author | zecke <zecke> | 2004-11-03 22:44:14 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-11-03 22:44:14 (UTC) |
commit | 3c446259f59c03abe2a64b2eba9a65cb11a81a1b (patch) (unidiff) | |
tree | 7f04d222710b745da710b36097f269bdc7fd1b9d /libopie2 | |
parent | 9a753348fd31dfb5309408c469cce8ea5eadf8ea (diff) | |
download | opie-3c446259f59c03abe2a64b2eba9a65cb11a81a1b.zip opie-3c446259f59c03abe2a64b2eba9a65cb11a81a1b.tar.gz opie-3c446259f59c03abe2a64b2eba9a65cb11a81a1b.tar.bz2 |
Provide a QPEApplication compatible constructor
-rw-r--r-- | libopie2/opiecore/oapplication.cpp | 8 | ||||
-rw-r--r-- | libopie2/opiecore/oapplication.h | 6 |
2 files changed, 13 insertions, 1 deletions
diff --git a/libopie2/opiecore/oapplication.cpp b/libopie2/opiecore/oapplication.cpp index ac7cd5a..0ce61d8 100644 --- a/libopie2/opiecore/oapplication.cpp +++ b/libopie2/opiecore/oapplication.cpp | |||
@@ -57,7 +57,13 @@ class OApplicationPrivate | |||
57 | /************************************************************************************************** | 57 | /************************************************************************************************** |
58 | * OApplication | 58 | * OApplication |
59 | **************************************************************************************************/ | 59 | **************************************************************************************************/ |
60 | 60 | OApplication::OApplication( int& argc, char** argv, Type type ) | |
61 | :QPEApplication( argc, argv, type ), | ||
62 | _appname( QString::null ), | ||
63 | _config( 0 ) | ||
64 | { | ||
65 | init(); | ||
66 | } | ||
61 | 67 | ||
62 | OApplication::OApplication( int& argc, char** argv, const QCString& rAppName ) | 68 | OApplication::OApplication( int& argc, char** argv, const QCString& rAppName ) |
63 | :QPEApplication( argc, argv ), | 69 | :QPEApplication( argc, argv ), |
diff --git a/libopie2/opiecore/oapplication.h b/libopie2/opiecore/oapplication.h index 337fe5e..d34e6b1 100644 --- a/libopie2/opiecore/oapplication.h +++ b/libopie2/opiecore/oapplication.h | |||
@@ -49,6 +49,12 @@ class OApplication : public QPEApplication | |||
49 | Q_OBJECT | 49 | Q_OBJECT |
50 | 50 | ||
51 | public: | 51 | public: |
52 | |||
53 | /** | ||
54 | * Constructor. Compatible to QPEApplication | ||
55 | */ | ||
56 | OApplication( int& argc, char** argv, Type type=GuiClient); | ||
57 | |||
52 | /** | 58 | /** |
53 | * Constructor. Parses command-line arguments and sets the window caption. | 59 | * Constructor. Parses command-line arguments and sets the window caption. |
54 | * | 60 | * |