summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--ChangeLog7
-rw-r--r--library/qpeapplication.h13
2 files changed, 17 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 913dc15..ff579d5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -11,2 +11,3 @@
11 -------- 11 --------
12 * Added the Qtopia 1.7 SDK macros for quick-apps to easa compilation of 3rd party apps against our headers (mickeyl)
12 13
@@ -19,4 +20,4 @@
19 * PackageManager supports src/gz feeds (drw,wimpie) 20 * PackageManager supports src/gz feeds (drw,wimpie)
20 * Add a syslog information tab to sysinfo (mickeyl) 21 * Added a syslog information tab to sysinfo (mickeyl)
21 * Add new, more consistent, PIM icons + a GIMP teplate (ar) 22 * Added new, more consistent, PIM icons + a GIMP teplate (ar)
22 23
@@ -31,3 +32,3 @@
31 * n.a. - PackageManager - (Minor UI tweak) fix double entry in source feed configuration when adding a new feed (drw) 32 * n.a. - PackageManager - (Minor UI tweak) fix double entry in source feed configuration when adding a new feed (drw)
32 * n.a. - Battery Applet - fix sizing of battery info popup 33 * n.a. - Battery Applet - fix sizing of battery info popup (drw,mickeyl)
33 34
diff --git a/library/qpeapplication.h b/library/qpeapplication.h
index 00d3d31..849d5b3 100644
--- a/library/qpeapplication.h
+++ b/library/qpeapplication.h
@@ -222,2 +222,15 @@ inline void QPEApplication::setCurrentRotation( int r )
222 222
223/*
224 * Qtopia 1.7 SDK compatibility macros
225 * FIXME: Support Opie Quicklaunch Interface
226 */
227 #define QTOPIA_ADD_APPLICATION(NAME,IMPLEMENTATION) \
228 int main( int argc, char** argv ) \
229 { \
230 QPEApplication app = QPEApplication( argc, argv );\
231 IMPLEMENTATION* mw = new IMPLEMENTATION(); \
232 app.showMainWidget( mw ); \
233 app.exec(); \
234 }
235#define QTOPIA_MAIN // Bee-Bop-Alula
223 236