1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-06 14:16:32 +02:00

Remove unused signal connection

This commit is contained in:
Leo Franchi
2011-10-13 17:50:29 -04:00
parent 8c587e9b75
commit 2d31de245f

View File

@@ -33,9 +33,7 @@ LatchManager::LatchManager( QObject* parent )
: QObject( parent ) : QObject( parent )
, m_state( NotLatched ) , m_state( NotLatched )
{ {
connect( AudioEngine::instance(), SIGNAL( playlistChanged( Tomahawk::PlaylistInterface* ) ), this, SLOT( playlistChanged( Tomahawk::PlaylistInterface* ) ) ); connect( AudioEngine::instance(), SIGNAL( playlistChanged( Tomahawk::PlaylistInterface* ) ), this, SLOT( playlistChanged( Tomahawk::PlaylistInterface* ) ) );
connect( AudioEngine::instance(), SIGNAL( stopped() ), this, SLOT( playlistChanged() ) );
} }
LatchManager::~LatchManager() LatchManager::~LatchManager()