Unnecessary includes removed.
[jenirok] / src / gui / daemon.cpp
index c5bc0d4..e0e001a 100644 (file)
@@ -17,7 +17,6 @@
  */
 
 #include <QtCore/QProcess>
-#include <QDebug>
 #include "daemon.h"
 
 namespace
@@ -29,7 +28,7 @@ namespace
 bool Daemon::start()
 {
     QProcess proc;
-    proc.start(INIT_DIR + "/" + DAEMON_NAME, QStringList() << "start" << "manual");
+    proc.start(INIT_DIR + "/" + DAEMON_NAME, QStringList() << "start");
 
     proc.waitForStarted();
     proc.waitForFinished();