summaryrefslogtreecommitdiffstats
path: root/examples/itemviews/stardelegate/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/itemviews/stardelegate/main.cpp')
-rw-r--r--examples/itemviews/stardelegate/main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/itemviews/stardelegate/main.cpp b/examples/itemviews/stardelegate/main.cpp
index 78245d005b..a9d5e96655 100644
--- a/examples/itemviews/stardelegate/main.cpp
+++ b/examples/itemviews/stardelegate/main.cpp
@@ -100,7 +100,11 @@ int main(int argc, char *argv[])
tableWidget.resizeColumnsToContents();
tableWidget.resize(500, 300);
+#if defined(Q_OS_SYMBIAN)
+ tableWidget.showMaximized();
+#else
tableWidget.show();
+#endif
return app.exec();
}