summaryrefslogtreecommitdiff
path: root/examples/richtext/textobject/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/richtext/textobject/main.cpp')
-rw-r--r--examples/richtext/textobject/main.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/richtext/textobject/main.cpp b/examples/richtext/textobject/main.cpp
index 2b95252..1d1d433 100644
--- a/examples/richtext/textobject/main.cpp
+++ b/examples/richtext/textobject/main.cpp
@@ -47,8 +47,10 @@ int main(int argv, char **args)
QApplication app(argv, args);
Window window;
+#if defined(Q_OS_SYMBIAN)
+ window.showMaximized();
+#else
window.show();
-
+#endif
return app.exec();
}
-