summaryrefslogtreecommitdiff
path: root/noncore/apps/keyz-cfg/main.cpp
authorzecke <zecke>2004-07-15 22:35:55 (UTC)
committer zecke <zecke>2004-07-15 22:35:55 (UTC)
commit422e7757feae169d8c931f2f0ac1d5acc201f846 (patch) (unidiff)
tree33e9493dcc04a1f6f2e251aa17d292d6b347e03a /noncore/apps/keyz-cfg/main.cpp
parent652bde59f89394d8091b3ac53635059e52d9f8a0 (diff)
downloadopie-422e7757feae169d8c931f2f0ac1d5acc201f846.zip
opie-422e7757feae169d8c931f2f0ac1d5acc201f846.tar.gz
opie-422e7757feae169d8c931f2f0ac1d5acc201f846.tar.bz2
When you've startet this application and the clicked
on its symbol you got a blank and unnamed widget. This was the QMainWindow which was manually hidden, but then raised by QPEApplication::raiseAppropriate. Now soleley use QPEApplication::showMainWidget and execDialog for showing the widget TODO: CleanUp more and use quicklaunc technology
Diffstat (limited to 'noncore/apps/keyz-cfg/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/keyz-cfg/main.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/noncore/apps/keyz-cfg/main.cpp b/noncore/apps/keyz-cfg/main.cpp
index 55cc23e..4615562 100644
--- a/noncore/apps/keyz-cfg/main.cpp
+++ b/noncore/apps/keyz-cfg/main.cpp
@@ -1,5 +1,6 @@
1#include <stdio.h> 1#include <stdio.h>
2#include <qpe/qpeapplication.h> 2#include <qpe/qpeapplication.h>
3#include <qlayout.h>
3#include <qmainwindow.h> 4#include <qmainwindow.h>
4 5
5#include "cfgdlg.h" 6#include "cfgdlg.h"
@@ -10,13 +11,12 @@ int main( int argc, char **argv ) {
10 CfgParser cp; 11 CfgParser cp;
11 cp.load(QPEApplication::qpeDir()+"/share/zkb/zkb.xml", cfile); 12 cp.load(QPEApplication::qpeDir()+"/share/zkb/zkb.xml", cfile);
12 13
13 QMainWindow m;
14 CfgDlg c(&m, &cfile, &app);
15 app.showMainWidget(&m);
16 m.hide();
17 c.showMaximized();
18 14
19 int ret = app.exec(); 15 CfgDlg c(0, &cfile, &app, true);
16
17
18 app.showMainWidget(&c);
19 int ret = QPEApplication::execDialog(&c);
20 20
21 return ret; 21 return ret;
22} 22}