summaryrefslogtreecommitdiff
path: root/core/qws/main.cpp
Side-by-side diff
Diffstat (limited to 'core/qws/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/qws/main.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/qws/main.cpp b/core/qws/main.cpp
index bfed283..1c3c621 100644
--- a/core/qws/main.cpp
+++ b/core/qws/main.cpp
@@ -1,26 +1,24 @@
-#include <qwindowsystem_qws.h>
-#include <qapplication.h>
#include "oqwsserver.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <syslog.h>
#include <stdio.h>
#define APPNAME "op-qws"
void toSyslog(QtMsgType type, const char *msg)
{
int level = LOG_INFO;
switch (type) {
case QtDebugMsg:
level = LOG_DEBUG;
break;
case QtWarningMsg:
level = LOG_WARNING;
break;
case QtFatalMsg: