summaryrefslogtreecommitdiff
path: root/examples/script/defaultprototypes/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/script/defaultprototypes/main.cpp')
-rw-r--r--examples/script/defaultprototypes/main.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/script/defaultprototypes/main.cpp b/examples/script/defaultprototypes/main.cpp
index 688bcd3..8fc17e3 100644
--- a/examples/script/defaultprototypes/main.cpp
+++ b/examples/script/defaultprototypes/main.cpp
@@ -79,5 +79,10 @@ int main(int argc, char **argv)
qWarning() << "line" << lineNo << ":" << result.toString();
}
+#if defined(Q_OS_SYMBIAN)
+ listWidget.showMaximized();
+#else
+ listWidget.show();
+#endif
return app.exec();
}