summaryrefslogtreecommitdiffstats
path: root/examples/xmlpatterns/recipes/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/xmlpatterns/recipes/main.cpp')
-rw-r--r--examples/xmlpatterns/recipes/main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/xmlpatterns/recipes/main.cpp b/examples/xmlpatterns/recipes/main.cpp
index cf679f5..2ff2460 100644
--- a/examples/xmlpatterns/recipes/main.cpp
+++ b/examples/xmlpatterns/recipes/main.cpp
@@ -47,7 +47,11 @@ int main(int argc, char* argv[])
Q_INIT_RESOURCE(recipes);
QApplication app(argc, argv);
QueryMainWindow* const queryWindow = new QueryMainWindow;
+#ifdef Q_OS_SYMBIAN
+ queryWindow->showMaximized();
+#else
queryWindow->show();
+#endif
return app.exec();
}
//! [0]