diff options
| author | David Boddie <david.boddie@nokia.com> | 2011-04-27 19:16:41 +0200 |
|---|---|---|
| committer | David Boddie <david.boddie@nokia.com> | 2011-05-23 14:24:07 +0200 |
| commit | 0748751c9f097d9d866605306bbdd4b96e2a5c4e (patch) | |
| tree | 1838365e6ad6592a26e193289d2136cb89319972 /examples/animation/easing/main.cpp | |
| parent | 5feefb0c039dae04290d1fca7c2f24276b6f7582 (diff) | |
Squashed commit of the changes from the mobile-examples repository
(4.7-generated-declarative branch).
Diffstat (limited to 'examples/animation/easing/main.cpp')
| -rw-r--r-- | examples/animation/easing/main.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/animation/easing/main.cpp b/examples/animation/easing/main.cpp index def1db27dea..66a6958cf22 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(); } |
