summaryrefslogtreecommitdiffstats
path: root/q15/src/main.cpp
diff options
context:
space:
mode:
authorgregory guy <gregory-tde@laposte.net>2020-11-23 16:16:19 +0100
committerSlávek Banko <slavek.banko@axis.cz>2020-12-02 19:51:33 +0100
commit84575d76c007b8aad8f749d4b9dfd46d94e5c5cb (patch)
tree57295accdac6350580291a99904cd203de32da3e /q15/src/main.cpp
parent5bf9a46ed843025016c7b7be43a1ca8754d60b79 (diff)
downloadtdegames-84575d76c007b8aad8f749d4b9dfd46d94e5c5cb.tar.gz
tdegames-84575d76c007b8aad8f749d4b9dfd46d94e5c5cb.zip
Remove QT4 stuff.
Signed-off-by: gregory guy <gregory-tde@laposte.net> (cherry picked from commit e4cea29e0476a2c250ee4a265cc51892eb4f6370)
Diffstat (limited to 'q15/src/main.cpp')
-rw-r--r--q15/src/main.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/q15/src/main.cpp b/q15/src/main.cpp
index cf90046a..b438794f 100644
--- a/q15/src/main.cpp
+++ b/q15/src/main.cpp
@@ -11,18 +11,12 @@
#include <stdlib.h>
-#if QT_VERSION >= 0x040000
-#include <QtGui/QApplication>
-#else
#include <ntqapplication.h>
-#endif
#include "mainwindow.h"
-const int
- XSize = 640,
- YSize = 480;
+const int XSize = 640, YSize = 480;
int
main(int argc, char *argv[])
@@ -31,9 +25,6 @@ main(int argc, char *argv[])
MainWindow *mw;
int result;
-#if QT_VERSION >= 0x040000
- QApplication::setFont(QFont("textbookc", 10));
-#endif
app = new TQApplication(argc, argv);
mw = new MainWindow(NULL);