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

Fix signal signature

This commit is contained in:
Florian Richter
2013-06-06 10:19:56 +02:00
committed by Michael Zanetti
parent 3e678c55ee
commit 0a815e06df

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