summaryrefslogtreecommitdiffstats
path: root/examples/itemviews/simpletreemodel/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/itemviews/simpletreemodel/main.cpp')
-rw-r--r--examples/itemviews/simpletreemodel/main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/itemviews/simpletreemodel/main.cpp b/examples/itemviews/simpletreemodel/main.cpp
index 1cca36328f..15e6bc3e76 100644
--- a/examples/itemviews/simpletreemodel/main.cpp
+++ b/examples/itemviews/simpletreemodel/main.cpp
@@ -56,6 +56,10 @@ int main(int argc, char *argv[])
QTreeView view;
view.setModel(&model);
view.setWindowTitle(QObject::tr("Simple Tree Model"));
+#if defined(Q_OS_SYMBIAN)
+ view.showMaximized();
+#else
view.show();
+#endif
return app.exec();
}