1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-05 13:47:26 +02:00

Get rid of now-unneeded qsharedptr

This commit is contained in:
Jeff Mitchell
2011-12-30 23:48:59 -05:00
parent 2c3bf472bc
commit b72863a1ff
2 changed files with 0 additions and 4 deletions

View File

@@ -29,8 +29,6 @@ PlaylistInterface::PlaylistInterface ()
PlaylistInterface::~PlaylistInterface() PlaylistInterface::~PlaylistInterface()
{ {
tDebug() << Q_FUNC_INFO << "DELETING POINTER " << m_sharedPtr.data();
m_sharedPtr.clear();
} }
result_ptr result_ptr

View File

@@ -87,8 +87,6 @@ signals:
private: private:
Q_DISABLE_COPY( PlaylistInterface ) Q_DISABLE_COPY( PlaylistInterface )
Tomahawk::playlistinterface_ptr m_sharedPtr;
QString m_filter; QString m_filter;
}; };