summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/gui/main.cpp
Side-by-side diff
Diffstat (limited to 'noncore/net/wellenreiter/gui/main.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/wellenreiter/gui/main.cpp21
1 files changed, 19 insertions, 2 deletions
diff --git a/noncore/net/wellenreiter/gui/main.cpp b/noncore/net/wellenreiter/gui/main.cpp
index 55a5260..dd757b5 100644
--- a/noncore/net/wellenreiter/gui/main.cpp
+++ b/noncore/net/wellenreiter/gui/main.cpp
@@ -54,3 +54,17 @@ int main( int argc, char **argv )
int result = -1;
+ static int killed = false;
+ bool check = true;
+ for ( int i = 1; i < argc; ++i )
+ {
+ if ( !strcmp( "-nocheck", argv[i] ) )
+ {
+ qDebug( "-nocheck found" );
+ check = false;
+ break;
+ }
+ }
+
+ if ( check )
+ {
// root check
@@ -68,4 +82,2 @@ int main( int argc, char **argv )
- static int killed = false;
-
QString line;
@@ -99,2 +111,3 @@ int main( int argc, char **argv )
}
+ }
@@ -102,2 +115,5 @@ int main( int argc, char **argv )
+ if ( check )
+ {
+
if ( killed )
@@ -112,2 +128,3 @@ int main( int argc, char **argv )
delete w;
+ }
return 0;