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, 4 insertions, 3 deletions
diff --git a/daemon/manager.cpp b/daemon/manager.cpp
index 0b365c3..c2e37e2 100644
--- a/daemon/manager.cpp
+++ b/daemon/manager.cpp
@@ -11,9 +11,10 @@ Manager::Manager(Settings *settings, QObject *parent) :
proxy(new PebbledProxy(this)),
watch(new WatchConnector(this)),
upload(new UploadManager(watch, this)),
- apps(new AppManager(this)),
+ blobdb(new BlobDbManager(watch, this)),
+ apps(new AppManager(blobdb, this)),
bank(new BankManager(watch, upload, apps, this)),
- fetch(new AppFetchManager(watch, upload, apps, this)),
+ fetch(new AppFetchManager(watch, upload, apps, this)),
voice(new VoiceCallManager(settings, this)),
notifications(new NotificationManager(settings, this)),
music(new MusicManager(watch, settings, this)),
@@ -59,7 +60,7 @@ Manager::Manager(Settings *settings, QObject *parent) :
connect(notifications, SIGNAL(facebookNotify(const QString &,const QString &)), SLOT(onFacebookNotify(const QString &,const QString &)));
connect(notifications, SIGNAL(telegramNotify(const QString &,const QString &)), SLOT(onTelegramNotify(const QString &,const QString &)));
connect(notifications, SIGNAL(hangoutsNotify(const QString &,const QString &)), SLOT(onHangoutsNotify(const QString &,const QString &)));
- connect(notifications, SIGNAL(whatappNotify(const QString &,const QString &)), SLOT(onWhatsappNotify(const QString &,const QString &)));
+ connect(notifications, SIGNAL(whatsappNotify(const QString &,const QString &)), SLOT(onWhatsappNotify(const QString &,const QString &)));
connect(appmsg, &AppMsgManager::appStarted, this, &Manager::onAppOpened);
connect(appmsg, &AppMsgManager::appStopped, this, &Manager::onAppClosed);