diff options
| author | Javier <dev.git@javispedro.com> | 2014-12-06 23:31:57 +0100 |
|---|---|---|
| committer | Javier <dev.git@javispedro.com> | 2014-12-06 23:31:57 +0100 |
| commit | 5499dc58d09f07081c41b8e4dead810a82137939 (patch) | |
| tree | 6e82f57d36d7a3ae6a4fbc1f6f447d8b5886273b /daemon/manager.cpp | |
| parent | b03ee6521f61d02dcebb5d140f8d308479a89e35 (diff) | |
properly send acks for incoming appmsgs
Diffstat (limited to 'daemon/manager.cpp')
| -rw-r--r-- | daemon/manager.cpp | 7 |
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; |
