summaryrefslogtreecommitdiff
path: root/examples/xmlpatterns/recipes/main.cpp
diff options
context:
space:
mode:
authorDavid Boddie <david.boddie@nokia.com>2011-04-27 19:16:41 +0200
committerDavid Boddie <david.boddie@nokia.com>2011-05-20 21:08:53 +0200
commit7c9c8af24d4265f780b2f53468735556bcbae91a (patch)
treeeaabc9207a37cd2a130d998958a8edf4f7eecedb /examples/xmlpatterns/recipes/main.cpp
parente5bd6e8e4a6764b989b37d083aeda31b44d73ce1 (diff)
downloadqtxmlpatterns-7c9c8af24d4265f780b2f53468735556bcbae91a.tar.gz
Squashed commit of the changes from the mobile-examples repository
(4.7-generated-declarative branch). (cherry picked from commit 539311f7b2687e3148ea695ce06fee768abe7b44)
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]