1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-09 07:36:48 +02:00

Merge pull request #193 from f1ori/master

Fix signature of signal
This commit is contained in:
Christian Muehlhaeuser
2013-06-06 01:49:49 -07:00

View File

@@ -303,7 +303,7 @@ FdoNotifyPlugin::nowPlaying( const QVariant& input )
);
QDBusPendingCallWatcher* watcher = new QDBusPendingCallWatcher( reply, this );
connect( watcher, SIGNAL( finished( QDBusPendingCallWatcher* ) ), SLOT( RegisterFinished( dbusPlayingReplyReceived* ) ) );
connect( watcher, SIGNAL( finished( QDBusPendingCallWatcher* ) ), SLOT( dbusPlayingReplyReceived( QDBusPendingCallWatcher* ) ) );
}