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