summaryrefslogtreecommitdiffstats
path: root/examples/graphicsview/portedasteroids/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/graphicsview/portedasteroids/main.cpp')
-rw-r--r--examples/graphicsview/portedasteroids/main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/graphicsview/portedasteroids/main.cpp b/examples/graphicsview/portedasteroids/main.cpp
index 4ed4e9f..e6c7623 100644
--- a/examples/graphicsview/portedasteroids/main.cpp
+++ b/examples/graphicsview/portedasteroids/main.cpp
@@ -52,7 +52,11 @@ int main(int argc, char **argv)
KAstTopLevel topLevel;
topLevel.setWindowTitle("Ported Asteroids Game");
+#if defined(Q_OS_SYMBIAN)
+ topLevel.showFullScreen();
+#else
topLevel.show();
+#endif
app.setQuitOnLastWindowClosed(true);
return app.exec();