summaryrefslogtreecommitdiffstats
path: root/src/server/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/main.cpp')
-rw-r--r--src/server/main.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/server/main.cpp b/src/server/main.cpp
index 769fedb..f804c1a 100644
--- a/src/server/main.cpp
+++ b/src/server/main.cpp
@@ -1,7 +1,6 @@
#include <iostream>
#include <stdlib.h>
#include "mainwindow/mainwindow.h"
-#include "../shared/settings.h"
#include "serverapp/serverapp.h"
using std::cout;
@@ -36,14 +35,5 @@ int main(int argc, char** argv)
}
}
- QStringList supportedStyles = QStyleFactory::keys();
- for (QString style : PREFERRED_STYLES) {
- if (supportedStyles.contains(style)) {
- qDebug() << "Setting style to: " << style;
- app.setStyle(style);
- break;
- }
- }
-
return app.exec();
}