summaryrefslogtreecommitdiff
path: root/examples/painting/svggenerator/main.cpp
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2011-05-23 23:33:26 +1000
committerQt Continuous Integration System <qt-info@nokia.com>2011-05-23 23:33:26 +1000
commit0aaa25052204cf2b6ee332cc15cfb6f9a737fa1a (patch)
tree65a36d36acc9bfb98329634447577e9365ab9823 /examples/painting/svggenerator/main.cpp
parent53379a432867addee542d4c2e7a99361ddce7a03 (diff)
parent32e6fcc2696a4b2bc1443449496d2a91913c5f90 (diff)
downloadqtsvg-0aaa25052204cf2b6ee332cc15cfb6f9a737fa1a.tar.gz
Merge branch 'master' of git://scm.dev.nokia.troll.no/qt/qtsvg-staging
* 'master' of git://scm.dev.nokia.troll.no/qt/qtsvg-staging: More examples adjusted to Symbian and Maemo5. (cherry picked from commit a97b9620a584c9b1a2e006873183526b3d7e001e) Squashed commit of changes from the 4.8-temp branch. Squashed commit of the changes from the mobile-examples repository (4.7-generated-declarative branch). (cherry picked from commit 539311f7b2687e3148ea695ce06fee768abe7b44)
Diffstat (limited to 'examples/painting/svggenerator/main.cpp')
-rw-r--r--examples/painting/svggenerator/main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/painting/svggenerator/main.cpp b/examples/painting/svggenerator/main.cpp
index f2079f5..4a43828 100644
--- a/examples/painting/svggenerator/main.cpp
+++ b/examples/painting/svggenerator/main.cpp
@@ -46,6 +46,10 @@ int main(int argc, char *argv[])
{
QApplication app(argc, argv);
Window window;
+#if defined(Q_OS_SYMBIAN)
+ window.showMaximized();
+#else
window.show();
+#endif
return app.exec();
}