summaryrefslogtreecommitdiffstats
path: root/examples/widgets/tetrix/main.cpp
diff options
context:
space:
mode:
authoraavit <qt-info@nokia.com>2011-06-22 11:01:36 (GMT)
committeraavit <qt-info@nokia.com>2011-06-22 11:01:36 (GMT)
commit2066945370f9d34cf9cff52f87d2f0e78dcb5b09 (patch)
tree32923325a125335edd5fc05df9d2bf40fe16b52a /examples/widgets/tetrix/main.cpp
parent2701802511d9c09a11212cc37838154245b0c0ca (diff)
parente4cce8849bf45be9a111072e3fca7bdf67364e8a (diff)
downloadQt-2066945370f9d34cf9cff52f87d2f0e78dcb5b09.zip
Qt-2066945370f9d34cf9cff52f87d2f0e78dcb5b09.tar.gz
Qt-2066945370f9d34cf9cff52f87d2f0e78dcb5b09.tar.bz2
Merge remote branch 'qt-mainline/4.8'
Diffstat (limited to 'examples/widgets/tetrix/main.cpp')
-rw-r--r--examples/widgets/tetrix/main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/widgets/tetrix/main.cpp b/examples/widgets/tetrix/main.cpp
index 9a7dcf3..622aee9 100644
--- a/examples/widgets/tetrix/main.cpp
+++ b/examples/widgets/tetrix/main.cpp
@@ -48,7 +48,11 @@ int main(int argc, char *argv[])
{
QApplication app(argc, argv);
TetrixWindow window;
+#if defined(Q_OS_SYMBIAN)
+ window.showMaximized();
+#else
window.show();
+#endif
qsrand(QTime(0,0,0).secsTo(QTime::currentTime()));
return app.exec();
}