summaryrefslogtreecommitdiff
path: root/noncore/games/kcheckers/main.cpp
authorleseb <leseb>2002-06-11 16:25:06 (UTC)
committer leseb <leseb>2002-06-11 16:25:06 (UTC)
commit2cfbb2adc058b59140a14ba6bbfc057266fea0b8 (patch) (unidiff)
tree2dc8756a9d691cdfb46b537955453f46171ceeff /noncore/games/kcheckers/main.cpp
parentd709dd35dc07d4a204380354f00a89ceb4d1f845 (diff)
downloadopie-2cfbb2adc058b59140a14ba6bbfc057266fea0b8.zip
opie-2cfbb2adc058b59140a14ba6bbfc057266fea0b8.tar.gz
opie-2cfbb2adc058b59140a14ba6bbfc057266fea0b8.tar.bz2
Version 0.3 port
Diffstat (limited to 'noncore/games/kcheckers/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/kcheckers/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/games/kcheckers/main.cpp b/noncore/games/kcheckers/main.cpp
index ac86271..b8dd620 100644
--- a/noncore/games/kcheckers/main.cpp
+++ b/noncore/games/kcheckers/main.cpp
@@ -1,18 +1,18 @@
1 1
2#include <qpe/qpeapplication.h> 2#include <qpe/qpeapplication.h>
3#include <qfont.h> 3#include <qfont.h>
4 4
5#include "kcheckers.h" 5#include "kcheckers.h"
6 6
7 7
8int main(int argc, char *argv[]) 8int main(int argc, char *argv[])
9{ 9{
10 QPEApplication app(argc,argv); 10 QPEApplication app(argc,argv);
11 11
12 KCheckers kcheckers; 12 KCheckers kcheckers;
13 app.setMainWidget(&kcheckers); 13 app.setMainWidget(&kcheckers);
14 kcheckers.show(); 14 kcheckers.showMaximized();
15 15
16 return app.exec(); 16 return app.exec();
17} 17}
18 18