summaryrefslogtreecommitdiffstats
path: root/examples/embedded/lightmaps/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/embedded/lightmaps/main.cpp')
-rw-r--r--examples/embedded/lightmaps/main.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/examples/embedded/lightmaps/main.cpp b/examples/embedded/lightmaps/main.cpp
index 85f74e638e..999c355f25 100644
--- a/examples/embedded/lightmaps/main.cpp
+++ b/examples/embedded/lightmaps/main.cpp
@@ -44,20 +44,13 @@
int main(int argc, char **argv)
{
-#if defined(Q_WS_X11)
- QApplication::setGraphicsSystem("raster");
-#endif
QApplication app(argc, argv);
app.setApplicationName("LightMaps");
MapZoom w;
-#if defined(Q_OS_SYMBIAN) || defined(Q_OS_WINCE_WM)
- w.showMaximized();
-#else
w.resize(600, 450);
w.show();
-#endif
return app.exec();
}