summaryrefslogtreecommitdiff
path: root/daemon/manager.cpp
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2014-11-29 21:08:56 +0100
committerJavier <dev.git@javispedro.com>2014-11-29 21:08:56 +0100
commit67e85358bc789e93f3f17527d9f721d6a9e5f94d (patch)
tree27fb32f683289308434821fabb86f7d4c53a0e50 /daemon/manager.cpp
parentecba425f8c029e103211446e9f250927a832315f (diff)
introduce the appmanager
Diffstat (limited to 'daemon/manager.cpp')
-rw-r--r--daemon/manager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/daemon/manager.cpp b/daemon/manager.cpp
index b01006c..7761864 100644
--- a/daemon/manager.cpp
+++ b/daemon/manager.cpp
@@ -5,9 +5,9 @@
#include <QtContacts/QContact>
#include <QtContacts/QContactPhoneNumber>
-Manager::Manager(watch::WatchConnector *watch, DBusConnector *dbus, VoiceCallManager *voice, NotificationManager *notifications, Settings *settings) :
- QObject(0), watch(watch), dbus(dbus), voice(voice), notifications(notifications), commands(new WatchCommands(watch, this)),
- settings(settings), notification(MNotification::DeviceEvent)
+Manager::Manager(watch::WatchConnector *watch, DBusConnector *dbus, VoiceCallManager *voice, NotificationManager *notifications, AppManager *apps, Settings *settings) :
+ QObject(0), watch(watch), dbus(dbus), voice(voice), notifications(notifications), apps(apps),
+ commands(new WatchCommands(watch, this)), settings(settings), notification(MNotification::DeviceEvent)
{
connect(settings, SIGNAL(valueChanged(QString)), SLOT(onSettingChanged(const QString&)));
connect(settings, SIGNAL(valuesChanged()), SLOT(onSettingsChanged()));