summaryrefslogtreecommitdiffstats
path: root/examples/sql/cachedtable/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/sql/cachedtable/main.cpp')
-rw-r--r--examples/sql/cachedtable/main.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/sql/cachedtable/main.cpp b/examples/sql/cachedtable/main.cpp
index 26ddc42c54..ecbf565bab 100644
--- a/examples/sql/cachedtable/main.cpp
+++ b/examples/sql/cachedtable/main.cpp
@@ -51,7 +51,11 @@ int main(int argc, char *argv[])
return 1;
TableEditor editor("person");
+#if defined(Q_OS_SYMBIAN)
+ editor.showMaximized();
+#else
editor.show();
- return editor.exec();
+#endif
+ return app.exec();
}
//! [0]