1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 07:49:42 +01:00

Fix signal signature

This commit is contained in:
Florian Richter 2013-06-06 10:19:56 +02:00
parent 533b99d838
commit 47dcb9f170

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* ) ) );
}