summaryrefslogtreecommitdiff
path: root/daemon/manager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/manager.cpp')
-rw-r--r--daemon/manager.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/daemon/manager.cpp b/daemon/manager.cpp
index b488432..8a00373 100644
--- a/daemon/manager.cpp
+++ b/daemon/manager.cpp
@@ -55,7 +55,6 @@ Manager::Manager(Settings *settings, QObject *parent) :
connect(notifications, SIGNAL(twitterNotify(const QString &,const QString &)), SLOT(onTwitterNotify(const QString &,const QString &)));
connect(notifications, SIGNAL(facebookNotify(const QString &,const QString &)), SLOT(onFacebookNotify(const QString &,const QString &)));
- connect(appmsg, &AppMsgManager::messageReceived, this, &Manager::onAppMessage);
connect(appmsg, &AppMsgManager::appStarted, this, &Manager::onAppOpened);
connect(appmsg, &AppMsgManager::appStopped, this, &Manager::onAppClosed);
@@ -395,14 +394,10 @@ void Manager::transliterateMessage(const QString &text)
void Manager::onAppNotification(const QUuid &uuid, const QString &title, const QString &body)
{
+ Q_UNUSED(uuid);
watch->sendSMSNotification(title, body);
}
-void Manager::onAppMessage(const QUuid &uuid, const QVariantMap &data)
-{
- emit proxy->AppMessage(uuid.toString(), data);
-}
-
void Manager::onAppOpened(const QUuid &uuid)
{
currentAppUuid = uuid;