summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/main.cpp
authorwimpie <wimpie>2004-08-16 23:22:59 (UTC)
committer wimpie <wimpie>2004-08-16 23:22:59 (UTC)
commit502c9b68e4739b6d487bb2ccd98e34535b7d4f77 (patch) (unidiff)
treefa74a3de6a037334c9320f6d646002a8550269b5 /noncore/settings/networksettings2/main.cpp
parentdb9349d5d67c34fc62dd89e37308b1cb409c60fa (diff)
downloadopie-502c9b68e4739b6d487bb2ccd98e34535b7d4f77.zip
opie-502c9b68e4739b6d487bb2ccd98e34535b7d4f77.tar.gz
opie-502c9b68e4739b6d487bb2ccd98e34535b7d4f77.tar.bz2
Modified config.in so that the compile sequence is now correct
(hopefully) Also applied the Networksettings patch to the wextensions.cpp file
Diffstat (limited to 'noncore/settings/networksettings2/main.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/networksettings2/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/settings/networksettings2/main.cpp b/noncore/settings/networksettings2/main.cpp
index b32b323..200e31b 100644
--- a/noncore/settings/networksettings2/main.cpp
+++ b/noncore/settings/networksettings2/main.cpp
@@ -54,24 +54,25 @@ int main( int argc, char * argv[] ) {
54 if( rmv ) { 54 if( rmv ) {
55 memmove( argv+i, argv+i+rmv, 55 memmove( argv+i, argv+i+rmv,
56 sizeof( char * ) * (argc-i-rmv) ); 56 sizeof( char * ) * (argc-i-rmv) );
57 i --; 57 i --;
58 argc -= rmv; 58 argc -= rmv;
59 } 59 }
60 } 60 }
61 61
62 if( strstr( argv[0], "-request" ) ) { 62 if( strstr( argv[0], "-request" ) ) {
63 // called from system to request something 63 // called from system to request something
64 GuiType = QApplication::Tty; 64 GuiType = QApplication::Tty;
65 Action = ACT_REQUEST; 65 Action = ACT_REQUEST;
66 Log(("Request : %s\n", argv[1] ));
66 } 67 }
67 68
68 // Start Qt 69 // Start Qt
69#ifdef _WS_QWS_ 70#ifdef _WS_QWS_
70 // because QPEApplication does not handle GuiType well 71 // because QPEApplication does not handle GuiType well
71 if( GuiType == QApplication::Tty ) { 72 if( GuiType == QApplication::Tty ) {
72 // this cast is NOT correct but we do not use 73 // this cast is NOT correct but we do not use
73 // TheApp anymore ... 74 // TheApp anymore ...
74 TheApp = (QPEApplication *)new QApplication( argc, argv, GuiType ); 75 TheApp = (QPEApplication *)new QApplication( argc, argv, GuiType );
75 } else { 76 } else {
76 TheApp = new QPEApplication( argc, argv, GuiType ); 77 TheApp = new QPEApplication( argc, argv, GuiType );
77 } 78 }