diff options
| author | Javier <dev.git@javispedro.com> | 2014-11-29 21:08:56 +0100 |
|---|---|---|
| committer | Javier <dev.git@javispedro.com> | 2014-11-29 21:08:56 +0100 |
| commit | 67e85358bc789e93f3f17527d9f721d6a9e5f94d (patch) | |
| tree | 27fb32f683289308434821fabb86f7d4c53a0e50 /daemon/manager.cpp | |
| parent | ecba425f8c029e103211446e9f250927a832315f (diff) | |
introduce the appmanager
Diffstat (limited to 'daemon/manager.cpp')
| -rw-r--r-- | daemon/manager.cpp | 6 |
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())); |
