summaryrefslogtreecommitdiffstats
path: root/konquest/Konquest.cc
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2020-12-11 16:15:55 +0900
committerMichele Calgaro <[email protected]>2020-12-11 16:19:06 +0900
commit5a413fcfb0c67a3f8173216352c5c87dbe3097e5 (patch)
tree2c4110256a0faa017d803c802f2e3011c2f095e4 /konquest/Konquest.cc
parent5f8a7a3105f27c7b45d98a7a6063ef561a45dd29 (diff)
downloadtdegames-5a413fcfb0c67a3f8173216352c5c87dbe3097e5.tar.gz
tdegames-5a413fcfb0c67a3f8173216352c5c87dbe3097e5.zip
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 931f81f9fe49f3fe339bb3cb23501393bfbb2d0a)
Diffstat (limited to 'konquest/Konquest.cc')
-rw-r--r--konquest/Konquest.cc34
1 files changed, 0 insertions, 34 deletions
diff --git a/konquest/Konquest.cc b/konquest/Konquest.cc
deleted file mode 100644
index a0c772a8..00000000
--- a/konquest/Konquest.cc
+++ /dev/null
@@ -1,34 +0,0 @@
-#include <tdeapplication.h>
-#include <tdelocale.h>
-#include <tdecmdlineargs.h>
-#include <tdeaboutdata.h>
-
-#include "version.h"
-#include "mainwin.h"
-#include "map_widget.h"
-
-static const char description[] = I18N_NOOP("Galactic Strategy TDE Game");
-
-int
-main(int argc, char **argv)
-{
- TDEAboutData aboutData( "konquest", I18N_NOOP("Konquest"),
- KONQUEST_VERSION, description, TDEAboutData::License_GPL,
- I18N_NOOP("Copyright (c) 1999-2001, Developers"));
- aboutData.addAuthor("Russ Steffen",0, "[email protected]");
- TDECmdLineArgs::init( argc, argv, &aboutData );
-
- TDEApplication a;
- TQApplication::setGlobalMouseTracking( true );
- TDEGlobal::locale()->insertCatalogue("libtdegames");
-
- if (a.isRestored())
- RESTORE(MainWindow)
- else {
- MainWindow *w = new MainWindow;
- a.setMainWidget(w);
- w->show();
- }
- return a.exec();
-}
-