diff options
| author | gregory guy <gregory-tde@laposte.net> | 2020-11-23 16:16:19 +0100 |
|---|---|---|
| committer | gregory guy <gregory-tde@laposte.net> | 2020-12-01 12:20:51 +0100 |
| commit | e4cea29e0476a2c250ee4a265cc51892eb4f6370 (patch) | |
| tree | b0225a8e056b0df05e080f2aeaf072f599100b5a /q15/src/main.cpp | |
| parent | 0683f09c4a902a13b826a06ef95377b6352801f8 (diff) | |
| download | tdegames-e4cea29e0476a2c250ee4a265cc51892eb4f6370.tar.gz tdegames-e4cea29e0476a2c250ee4a265cc51892eb4f6370.zip | |
Remove QT4 stuff.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'q15/src/main.cpp')
| -rw-r--r-- | q15/src/main.cpp | 11 |
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); |
