From 8e59ada22ee36f9d5624fdbe1c3a10bc0536f3fb Mon Sep 17 00:00:00 2001 From: Marco Martin Date: Wed, 17 Jun 2015 14:59:12 -0700 Subject: [PATCH] fix build --- containments/taskpanel/taskpanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containments/taskpanel/taskpanel.cpp b/containments/taskpanel/taskpanel.cpp index 5c0fd801..f82b9c68 100644 --- a/containments/taskpanel/taskpanel.cpp +++ b/containments/taskpanel/taskpanel.cpp @@ -72,7 +72,7 @@ void TaskPanel::loadScriptFinishedSlot(QDBusPendingCallWatcher *watcher) QDBusConnection::sessionBus().connect(s_kwinService, "/" + QString::number(id), QString(), "printError", this, SLOT(print(QString))); QDBusMessage message = QDBusMessage::createMethodCall(s_kwinService, "/" + QString::number(id), QString(), "run"); //fire blindly the call for now - reply = QDBusConnection::sessionBus().asyncCall(message); + QDBusConnection::sessionBus().asyncCall(message); } }