You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.1 KiB
27 lines
1.1 KiB
diff --git a/libkhotkeysprivate/actions/dbus_action.cpp b/libkhotkeysprivate/actions/dbus_action.cpp
|
|
index 0a7a1a1..b1b8a74 100644
|
|
--- a/libkhotkeysprivate/actions/dbus_action.cpp
|
|
+++ b/libkhotkeysprivate/actions/dbus_action.cpp
|
|
@@ -133,7 +133,7 @@ void DBusAction::execute()
|
|
}
|
|
qDebug() << "D-Bus call:" << _application << ":" << _object << ":" << _function << ":" << args_list;
|
|
KProcess proc;
|
|
- proc << "qdbus" << _application << _object << _function << args_list;
|
|
+ proc << "qdbus-qt5" << _application << _object << _function << args_list;
|
|
proc.startDetached();
|
|
}
|
|
|
|
diff --git a/test/main.cpp b/test/main.cpp
|
|
index 20409db..e6b7453 100644
|
|
--- a/test/main.cpp
|
|
+++ b/test/main.cpp
|
|
@@ -16,7 +16,7 @@ int main(int argc, char** argv)
|
|
if (reply.value().contains("khotkeys")) {
|
|
qDebug() << "The khotkeys module is already running.";
|
|
qDebug() << "To unload it run:";
|
|
- qDebug() << "qdbus org.kde.kded5 /kded org.kde.kded5.unloadModule khotkeys";
|
|
+ qDebug() << "qdbus-qt5 org.kde.kded5 /kded org.kde.kded5.unloadModule khotkeys";
|
|
exit(-1);
|
|
}
|
|
|