summaryrefslogtreecommitdiffstats
path: root/examples/graphicsview/flowlayout/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/graphicsview/flowlayout/main.cpp')
-rw-r--r--examples/graphicsview/flowlayout/main.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/graphicsview/flowlayout/main.cpp b/examples/graphicsview/flowlayout/main.cpp
index e8b72b179f..8f5a0faede 100644
--- a/examples/graphicsview/flowlayout/main.cpp
+++ b/examples/graphicsview/flowlayout/main.cpp
@@ -49,7 +49,13 @@ int main(int argc, char **argv)
QGraphicsView *view = new QGraphicsView(&scene);
Window *w = new Window;
scene.addItem(w);
+
+#if defined(Q_OS_SYMBIAN)
+ view->showMaximized();
+#else
view->resize(400, 300);
view->show();
+#endif
+
return app.exec();
}