From 23a1f86834d013e9ae07fb96fc63c550593fe7b1 Mon Sep 17 00:00:00 2001 From: Roland Winklmeier Date: Fri, 14 Sep 2018 15:26:48 +0200 Subject: [PATCH] Connect to remoteHotkeyAction in CContextApplicationProxy::relaySignals ref T330 --- src/blackcore/context/contextapplicationproxy.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/blackcore/context/contextapplicationproxy.cpp b/src/blackcore/context/contextapplicationproxy.cpp index bdc861846..bad4b1bb7 100644 --- a/src/blackcore/context/contextapplicationproxy.cpp +++ b/src/blackcore/context/contextapplicationproxy.cpp @@ -67,6 +67,9 @@ namespace BlackCore s = connection.connect(serviceName, IContextApplication::ObjectPath(), IContextApplication::InterfaceName(), "hotkeyActionsRegistered", this, SIGNAL(hotkeyActionsRegistered(QStringList, BlackMisc::CIdentifier))); Q_ASSERT(s); + s = connection.connect(serviceName, IContextApplication::ObjectPath(), IContextApplication::InterfaceName(), + "remoteHotkeyAction", this, SIGNAL(remoteHotkeyAction(QString, bool, BlackMisc::CIdentifier))); + Q_ASSERT(s); s = connection.connect(serviceName, IContextApplication::ObjectPath(), IContextApplication::InterfaceName(), "requestDisplayOnConsole", this, SIGNAL(requestDisplayOnConsole(QString))); Q_UNUSED(s);