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) (side-by-side diff)
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 @@
#include <qpe/qpeapplication.h>
#include <qfont.h>
#include "kcheckers.h"
int main(int argc, char *argv[])
{
QPEApplication app(argc,argv);
KCheckers kcheckers;
app.setMainWidget(&kcheckers);
- kcheckers.show();
+ kcheckers.showMaximized();
return app.exec();
}