mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-12 00:54:20 +02:00
Fix slot/signal namespacing
This commit is contained in:
committed by
Michael Zanetti
parent
47fc81b8c0
commit
e0bff794ab
@@ -54,8 +54,9 @@ DBSyncConnection::DBSyncConnection( Servent* s, const source_ptr& src )
|
|||||||
{
|
{
|
||||||
qDebug() << Q_FUNC_INFO << src->id() << thread();
|
qDebug() << Q_FUNC_INFO << src->id() << thread();
|
||||||
|
|
||||||
|
// Be aware of namespaces in these signals/slots!
|
||||||
connect( this, SIGNAL( stateChanged( Tomahawk::DBSyncConnectionState, Tomahawk::DBSyncConnectionState, QString ) ),
|
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() ),
|
connect( m_source.data(), SIGNAL( commandsFinished() ),
|
||||||
this, SLOT( lastOpApplied() ) );
|
this, SLOT( lastOpApplied() ) );
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user