This commit is contained in:
Klaus Basan
2019-04-08 05:02:33 +02:00
committed by Mat Sutcliffe
parent 5e32064d21
commit a9967e2002
4 changed files with 10 additions and 10 deletions

View File

@@ -251,9 +251,9 @@ namespace BlackCore
return ok;
}
void CContextApplicationProxy::processRemoteHotkeyActionCall(const QString &action, bool argument, const BlackMisc::CIdentifier &origin)
void CContextApplicationProxy::processRemoteHotkeyActionCall(const QString &action, bool argument, const CIdentifier &origin)
{
if (origin.isFromLocalMachine()) { return; }
if (!sApp || origin.isFromLocalMachine()) { return; }
sApp->getInputManager()->callFunctionsBy(action, argument);
CLogMessage(this, CLogCategory::contextSlot()).debug() << "Calling function" << action << "from origin" << origin.getMachineName();
}