summaryrefslogtreecommitdiffstats
path: root/synchronizer
diff options
context:
space:
mode:
Diffstat (limited to 'synchronizer')
-rw-r--r--synchronizer/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/synchronizer/main.cpp b/synchronizer/main.cpp
index d632d44..11fec25 100644
--- a/synchronizer/main.cpp
+++ b/synchronizer/main.cpp
@@ -17,7 +17,7 @@
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */ 18 */
19 19
20#include <QApplication> 20#include <QCoreApplication>
21 21
22#include <signal.h> 22#include <signal.h>
23 23
@@ -34,7 +34,7 @@ int main(int argc, char *argv[])
34{ 34{
35 //For crashes 35 //For crashes
36 signal(SIGSEGV, crashHandler); 36 signal(SIGSEGV, crashHandler);
37 QApplication app(argc, argv); 37 QCoreApplication app(argc, argv);
38 38
39 if (argc < 2) { 39 if (argc < 2) {
40 Warning() << "Not enough args passed, no resource loaded."; 40 Warning() << "Not enough args passed, no resource loaded.";