diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2011-06-08 02:08:38 +1000 |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2011-06-08 02:08:38 +1000 |
commit | c6a8f35846df86a87591372d022e54a701591f5b (patch) | |
tree | 471f5eb02ccee400c2587e8b3fae55b922d848d1 /examples/widgets | |
parent | d4c00ffb6f01a991118388957de831394c8ad9c1 (diff) | |
parent | 1dd89b6ad0546f247486b63f72035baf21475b51 (diff) | |
download | qt4-tools-c6a8f35846df86a87591372d022e54a701591f5b.tar.gz |
Merge branch 4.7 into qt-4.8-from-4.7
Diffstat (limited to 'examples/widgets')
-rw-r--r-- | examples/widgets/wiggly/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/widgets/wiggly/main.cpp b/examples/widgets/wiggly/main.cpp index 91cd1b8c4b..7ba6d3649a 100644 --- a/examples/widgets/wiggly/main.cpp +++ b/examples/widgets/wiggly/main.cpp @@ -45,7 +45,11 @@ int main(int argc, char *argv[]) { QApplication app(argc, argv); +#ifdef Q_OS_SYMBIAN + bool smallScreen = true; +#else bool smallScreen = QApplication::arguments().contains("-small-screen"); +#endif Dialog dialog(0, smallScreen); |