diff options
author | Harald Fernengel <harald.fernengel@nokia.com> | 2010-05-20 09:03:12 (GMT) |
---|---|---|
committer | Harald Fernengel <harald.fernengel@nokia.com> | 2010-05-20 09:04:45 (GMT) |
commit | a72c6f403435e5cc7aff501b1e1ee990dfb24969 (patch) | |
tree | dc6ea15c5abcf7564737fe9115486a111ba6e51e /examples/script | |
parent | e61b3eb9903e9a63f107074c0e8d60e3ee689a52 (diff) | |
download | Qt-a72c6f403435e5cc7aff501b1e1ee990dfb24969.zip Qt-a72c6f403435e5cc7aff501b1e1ee990dfb24969.tar.gz Qt-a72c6f403435e5cc7aff501b1e1ee990dfb24969.tar.bz2 |
Use QApplication::arguments() to check for command line args
Use the Qt way to look up command line args, remove 5 lines of code per
example. Also clean up badly indented code.
Diffstat (limited to 'examples/script')
-rw-r--r-- | examples/script/context2d/main.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/examples/script/context2d/main.cpp b/examples/script/context2d/main.cpp index 95daf2b..8fd68db 100644 --- a/examples/script/context2d/main.cpp +++ b/examples/script/context2d/main.cpp @@ -46,14 +46,10 @@ int main(int argc, char **argv) { Q_INIT_RESOURCE(context2d); - bool smallScreen = false; - for (int i = 0; i < argc; i++) - if (QString(argv[i]) == "-small-screen") - smallScreen = true; - QApplication app(argc, argv); Window win; + bool smallScreen = QApplication::arguments().contains("-small-screen"); if (!smallScreen) { win.show(); } else { |