summaryrefslogtreecommitdiff
path: root/daemon/daemon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/daemon.cpp')
-rw-r--r--daemon/daemon.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/daemon/daemon.cpp b/daemon/daemon.cpp
index b49ea6e..30341d8 100644
--- a/daemon/daemon.cpp
+++ b/daemon/daemon.cpp
@@ -35,9 +35,10 @@ int main(int argc, char *argv[])
QCoreApplication app(argc, argv);
watch::WatchConnector watch;
+ DBusConnector dbus;
VoiceCallManager voice;
- Manager manager(&watch, &voice);
+ Manager manager(&watch, &dbus, &voice);
return app.exec();
}