-rw-r--r-- | noncore/games/kpacman/kpacman.cpp | 4 | ||||
-rw-r--r-- | noncore/games/kpacman/kpacman.h | 4 | ||||
-rw-r--r-- | noncore/games/kpacman/kpacman.pro | 4 | ||||
-rw-r--r-- | noncore/games/kpacman/main.cpp | 27 | ||||
-rw-r--r-- | noncore/games/kpacman/opie-kpacman.control | 2 |
5 files changed, 9 insertions, 32 deletions
diff --git a/noncore/games/kpacman/kpacman.cpp b/noncore/games/kpacman/kpacman.cpp index 9820e5a..4a3b870 100644 --- a/noncore/games/kpacman/kpacman.cpp +++ b/noncore/games/kpacman/kpacman.cpp | |||
@@ -13,8 +13,8 @@ | |||
13 | #endif | 13 | #endif |
14 | 14 | ||
15 | 15 | ||
16 | Kpacman::Kpacman(QWidget *parent, const char *name) | 16 | Kpacman::Kpacman(QWidget *parent, const char *name, WFlags fl) |
17 | : KTMainWindow(parent, name) | 17 | : KTMainWindow(parent, name,fl) |
18 | { | 18 | { |
19 | schemesPopup = new QList<QPopupMenu>; | 19 | schemesPopup = new QList<QPopupMenu>; |
20 | schemesPopup->setAutoDelete(TRUE); | 20 | schemesPopup->setAutoDelete(TRUE); |
diff --git a/noncore/games/kpacman/kpacman.h b/noncore/games/kpacman/kpacman.h index 2c1de70..829714a 100644 --- a/noncore/games/kpacman/kpacman.h +++ b/noncore/games/kpacman/kpacman.h | |||
@@ -28,7 +28,9 @@ class Kpacman : public KTMainWindow | |||
28 | { | 28 | { |
29 | Q_OBJECT | 29 | Q_OBJECT |
30 | public: | 30 | public: |
31 | Kpacman(QWidget *parent = 0, const char *name = 0); | 31 | Kpacman(QWidget *parent = 0, const char *name = 0, WFlags fl = 0); |
32 | static QString appName() { return QString::fromLatin1("kpacman"); } | ||
33 | |||
32 | virtual ~Kpacman(); | 34 | virtual ~Kpacman(); |
33 | 35 | ||
34 | public slots: | 36 | public slots: |
diff --git a/noncore/games/kpacman/kpacman.pro b/noncore/games/kpacman/kpacman.pro index 45314f9..a231b01 100644 --- a/noncore/games/kpacman/kpacman.pro +++ b/noncore/games/kpacman/kpacman.pro | |||
@@ -1,5 +1,4 @@ | |||
1 | TEMPLATE= app | 1 | CONFIG = qt quick-app |
2 | CONFIG = qt warn_on | ||
3 | HEADERS = kpacmanwidget.h \ | 2 | HEADERS = kpacmanwidget.h \ |
4 | referee.h \ | 3 | referee.h \ |
5 | status.h \ | 4 | status.h \ |
@@ -33,7 +32,6 @@ SOURCES = kpacmanwidget.cpp \ | |||
33 | INCLUDEPATH+= $(OPIEDIR)/include | 32 | INCLUDEPATH+= $(OPIEDIR)/include |
34 | DEPENDPATH+= $(OPIEDIR)/include | 33 | DEPENDPATH+= $(OPIEDIR)/include |
35 | LIBS += -lqpe -lopiecore2 | 34 | LIBS += -lqpe -lopiecore2 |
36 | DESTDIR = $(OPIEDIR)/bin | ||
37 | TARGET = kpacman | 35 | TARGET = kpacman |
38 | 36 | ||
39 | include ( $(OPIEDIR)/include.pro ) | 37 | include ( $(OPIEDIR)/include.pro ) |
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 | |||
@@ -22,7 +22,7 @@ | |||
22 | #include <kaboutdata.h> | 22 | #include <kaboutdata.h> |
23 | #include <klocale.h> | 23 | #include <klocale.h> |
24 | #elif defined( QPE_PORT ) | 24 | #elif defined( QPE_PORT ) |
25 | #include <qpe/qpeapplication.h> | 25 | #include <opie2/oapplicationfactory.h> |
26 | #endif | 26 | #endif |
27 | 27 | ||
28 | #include "kpacman.h" | 28 | #include "kpacman.h" |
@@ -40,27 +40,4 @@ static KCmdLineOptions options[] = | |||
40 | }; | 40 | }; |
41 | #endif | 41 | #endif |
42 | 42 | ||
43 | int main(int argc, char *argv[]) | 43 | OPIE_EXPORT_APP( Opie::Core::OApplicationFactory<Kpacman> ) |
44 | { | ||
45 | #if defined( KDE2_PORT ) | ||
46 | KAboutData aboutData( "kpacman", I18N_NOOP("Kpacman"), | ||
47 | VERSION, description, KAboutData::License_GPL, | ||
48 | "(c) 2002, Jörg Thönnissen", 0, 0, "joe@dsite.de"); | ||
49 | aboutData.addAuthor("Jörg Thönnissen",0, "joe@dsite.de"); | ||
50 | KCmdLineArgs::init( argc, argv, &aboutData ); | ||
51 | KCmdLineArgs::addCmdLineOptions( options ); // Add our own options. | ||
52 | KApplication a; | ||
53 | #elif defined( QPE_PORT ) | ||
54 | QPEApplication a( argc, argv ); | ||
55 | #endif | ||
56 | Kpacman *kpacman = new Kpacman( NULL, "Kpacman" ); | ||
57 | a.setMainWidget(kpacman); | ||
58 | #if defined( KDE2_PORT ) | ||
59 | a.setTopWidget(kpacman); | ||
60 | kpacman->show(); | ||
61 | #elif defined( QPE_PORT ) | ||
62 | kpacman->showMaximized(); | ||
63 | #endif | ||
64 | |||
65 | return a.exec(); | ||
66 | } | ||
diff --git a/noncore/games/kpacman/opie-kpacman.control b/noncore/games/kpacman/opie-kpacman.control index 15e3056..68487ec 100644 --- a/noncore/games/kpacman/opie-kpacman.control +++ b/noncore/games/kpacman/opie-kpacman.control | |||
@@ -1,5 +1,5 @@ | |||
1 | Package: opie-kpacman | 1 | Package: opie-kpacman |
2 | Files: bin/kpacman apps/Games/kpacman.desktop pics/kpacman/kpacman.png share/kpacman | 2 | Files: plugins/applications/libkpacman.so* bin/kpacman apps/Games/kpacman.desktop pics/kpacman/kpacman.png share/kpacman |
3 | Version: 0.3.1-$SUB_VERSION | 3 | Version: 0.3.1-$SUB_VERSION |
4 | Depends: task-opie-minimal | 4 | Depends: task-opie-minimal |
5 | Priority: optional | 5 | Priority: optional |