From 141d25630684ad8c08d1e0d41ff08ce67360bb7c Mon Sep 17 00:00:00 2001 From: Roland Winklmeier Date: Mon, 25 May 2015 15:43:27 +0200 Subject: [PATCH] Fix CContextNetworkProxy::parseCommandLine calling wrong DBus method --- src/blackcore/context_network_proxy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blackcore/context_network_proxy.cpp b/src/blackcore/context_network_proxy.cpp index ae56d459c..ad3600b72 100644 --- a/src/blackcore/context_network_proxy.cpp +++ b/src/blackcore/context_network_proxy.cpp @@ -250,7 +250,7 @@ namespace BlackCore bool CContextNetworkProxy::parseCommandLine(const QString &commandLine, const COriginator &originator) { - return this->m_dBusInterface->callDBusRet(QLatin1Literal("commandLineEntered"), commandLine, originator); + return this->m_dBusInterface->callDBusRet(QLatin1Literal("parseCommandLine"), commandLine, originator); } void CContextNetworkProxy::sendTextMessages(const CTextMessageList &textMessages)