summaryrefslogtreecommitdiffstats
path: root/examples/animation/easing/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/animation/easing/main.cpp')
-rw-r--r--examples/animation/easing/main.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/animation/easing/main.cpp b/examples/animation/easing/main.cpp
index 72fa2d0a8d..0d63a3136e 100644
--- a/examples/animation/easing/main.cpp
+++ b/examples/animation/easing/main.cpp
@@ -46,7 +46,15 @@ int main(int argc, char **argv)
Q_INIT_RESOURCE(easing);
QApplication app(argc, argv);
Window w;
+
+#if defined(Q_OS_SYMBIAN)
+ w.showMaximized();
+#elif defined(Q_WS_MAEMO_5) || defined(Q_WS_SIMULATOR)
+ w.show();
+#else
w.resize(400, 400);
w.show();
+#endif
+
return app.exec();
}