summaryrefslogtreecommitdiffstats
path: root/examples/widgets
diff options
context:
space:
mode:
authorHarald Fernengel <harald.fernengel@nokia.com>2010-05-20 09:03:12 (GMT)
committerHarald Fernengel <harald.fernengel@nokia.com>2010-05-20 09:04:45 (GMT)
commita72c6f403435e5cc7aff501b1e1ee990dfb24969 (patch)
treedc6ea15c5abcf7564737fe9115486a111ba6e51e /examples/widgets
parente61b3eb9903e9a63f107074c0e8d60e3ee689a52 (diff)
downloadQt-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/widgets')
-rw-r--r--examples/widgets/wiggly/main.cpp15
1 files changed, 6 insertions, 9 deletions
diff --git a/examples/widgets/wiggly/main.cpp b/examples/widgets/wiggly/main.cpp
index 4a6cd5d..8ad7696 100644
--- a/examples/widgets/wiggly/main.cpp
+++ b/examples/widgets/wiggly/main.cpp
@@ -46,16 +46,13 @@
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
- bool smallScreen = false;
- for (int i=0; i<argc; i++)
- if (QString(argv[i]) == "-small-screen")
- smallScreen = true;
- Dialog dialog(0,smallScreen);
- if (!smallScreen){
+ bool smallScreen = QApplication::arguments().contains("-small-screen");
+
+ Dialog dialog(0, smallScreen);
+
+ if (!smallScreen)
dialog.show();
- }
- else{
+ else
dialog.showFullScreen();
- }
return app.exec();
}