summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore 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
@@ -10,4 +10,5 @@
10 Internal 10 Internal
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
13 2004-11-26Opie 1.1.8 14 2004-11-26Opie 1.1.8
@@ -18,6 +19,6 @@
18 * PackageManager supports linking of applications to root (drw) 19 * PackageManager supports linking of applications to root (drw)
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
23 Fixed Bugs 24 Fixed Bugs
@@ -30,5 +31,5 @@
30 * n.a. - PackageManager - (Minor UI tweak) in filter dialog, when option is enabled, set focus to widget that corresponds to that option (drw) 31 * n.a. - PackageManager - (Minor UI tweak) in filter dialog, when option is enabled, set focus to widget that corresponds to that option (drw)
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
34 Internal 35 Internal
diff --git a/library/qpeapplication.h b/library/qpeapplication.h
index 00d3d31..849d5b3 100644
--- a/library/qpeapplication.h
+++ b/library/qpeapplication.h
@@ -221,4 +221,17 @@ inline void QPEApplication::setCurrentRotation( int r )
221} 221}
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
224/* 237/*