From 47dcb9f170a0928bf522b4ba6fe1ee6628e03f1f Mon Sep 17 00:00:00 2001 From: Florian Richter Date: Thu, 6 Jun 2013 10:19:56 +0200 Subject: [PATCH] Fix signal signature --- src/infoplugins/linux/fdonotify/FdoNotifyPlugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/infoplugins/linux/fdonotify/FdoNotifyPlugin.cpp b/src/infoplugins/linux/fdonotify/FdoNotifyPlugin.cpp index 89c98b997..f23d34ccc 100644 --- a/src/infoplugins/linux/fdonotify/FdoNotifyPlugin.cpp +++ b/src/infoplugins/linux/fdonotify/FdoNotifyPlugin.cpp @@ -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* ) ) ); }