1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-11 16:44:05 +02:00

Fix slot/signal namespacing

This commit is contained in:
Uwe L. Korn
2013-06-18 00:02:25 +02:00
committed by Michael Zanetti
parent 47fc81b8c0
commit e0bff794ab

View File

@@ -54,8 +54,9 @@ DBSyncConnection::DBSyncConnection( Servent* s, const source_ptr& src )
{
qDebug() << Q_FUNC_INFO << src->id() << thread();
// Be aware of namespaces in these signals/slots!
connect( this, SIGNAL( stateChanged( Tomahawk::DBSyncConnectionState, Tomahawk::DBSyncConnectionState, QString ) ),
m_source.data(), SLOT( onStateChanged( Tomahawk::DBSyncConnectionState, Tomahawk::DBSyncConnectionState, QString ) ) );
m_source.data(), SLOT( onStateChanged( DBSyncConnectionState, DBSyncConnectionState, QString ) ) );
connect( m_source.data(), SIGNAL( commandsFinished() ),
this, SLOT( lastOpApplied() ) );