summaryrefslogtreecommitdiff
path: root/noncore/games/kpacman/main.cpp
authorzecke <zecke>2004-11-14 22:10:14 (UTC)
committer zecke <zecke>2004-11-14 22:10:14 (UTC)
commit489818a4ee9b5328e31d184d5a0b43673b69dff2 (patch) (side-by-side diff)
tree622000f4ca45ed066391881c0df1837aa1a5b71e /noncore/games/kpacman/main.cpp
parentefb1eb559bfc88bca064fceed976b1aec231bc21 (diff)
downloadopie-489818a4ee9b5328e31d184d5a0b43673b69dff2.zip
opie-489818a4ee9b5328e31d184d5a0b43673b69dff2.tar.gz
opie-489818a4ee9b5328e31d184d5a0b43673b69dff2.tar.bz2
Make QuickLaunchable and see how good it frees resources
Diffstat (limited to 'noncore/games/kpacman/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/kpacman/main.cpp27
1 files changed, 2 insertions, 25 deletions
diff --git a/noncore/games/kpacman/main.cpp b/noncore/games/kpacman/main.cpp
index 76afb57..2906d2a 100644
--- a/noncore/games/kpacman/main.cpp
+++ b/noncore/games/kpacman/main.cpp
@@ -24,3 +24,3 @@
#elif defined( QPE_PORT )
-#include <qpe/qpeapplication.h>
+#include <opie2/oapplicationfactory.h>
#endif
@@ -42,25 +42,2 @@ static KCmdLineOptions options[] =
-int main(int argc, char *argv[])
-{
-#if defined( KDE2_PORT )
- KAboutData aboutData( "kpacman", I18N_NOOP("Kpacman"),
- VERSION, description, KAboutData::License_GPL,
- "(c) 2002, Jörg Thönnissen", 0, 0, "joe@dsite.de");
- aboutData.addAuthor("Jörg Thönnissen",0, "joe@dsite.de");
- KCmdLineArgs::init( argc, argv, &aboutData );
- KCmdLineArgs::addCmdLineOptions( options ); // Add our own options.
- KApplication a;
-#elif defined( QPE_PORT )
- QPEApplication a( argc, argv );
-#endif
- Kpacman *kpacman = new Kpacman( NULL, "Kpacman" );
- a.setMainWidget(kpacman);
-#if defined( KDE2_PORT )
- a.setTopWidget(kpacman);
- kpacman->show();
-#elif defined( QPE_PORT )
- kpacman->showMaximized();
-#endif
-
- return a.exec();
-}
+OPIE_EXPORT_APP( Opie::Core::OApplicationFactory<Kpacman> )