summaryrefslogtreecommitdiff
path: root/noncore/games/go/main.cpp
Unidiff
Diffstat (limited to 'noncore/games/go/main.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/games/go/main.cpp11
1 files changed, 2 insertions, 9 deletions
diff --git a/noncore/games/go/main.cpp b/noncore/games/go/main.cpp
index c7e2669..f24e3c3 100644
--- a/noncore/games/go/main.cpp
+++ b/noncore/games/go/main.cpp
@@ -13,23 +13,16 @@
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21#include "gowidget.h" 21#include "gowidget.h"
22 22
23#include <qpe/qpeapplication.h> 23#include <qpe/qpeapplication.h>
24 24
25#include <stdio.h> 25#include <opie/oapplicationfactory.h>
26 26
27int main( int argc, char ** argv) 27OPIE_EXPORT_APP( OApplicationFactory<GoMainWidget> )
28{
29 QPEApplication app( argc, argv );
30 28
31 GoMainWidget m;
32 m.setCaption( GoWidget::tr("Go") );
33 app.showMainWidget( &m );
34 return app.exec();
35}