diff options
Diffstat (limited to 'daemon/daemon.cpp')
| -rw-r--r-- | daemon/daemon.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/daemon/daemon.cpp b/daemon/daemon.cpp index 520e8f2..252e715 100644 --- a/daemon/daemon.cpp +++ b/daemon/daemon.cpp @@ -77,12 +77,11 @@ int main(int argc, char *argv[]) Log4Qt::Logger::logger(QLatin1String("Main Logger"))->info() << argv[0] << APP_VERSION; + Settings settings; watch::WatchConnector watch; DBusConnector dbus; - VoiceCallManager voice; - NotificationManager notifications; - Settings settings; - + VoiceCallManager voice(&settings); + NotificationManager notifications(&settings); Manager manager(&watch, &dbus, &voice, ¬ifications, &settings); signal(SIGINT, signalhandler); |
