summaryrefslogtreecommitdiffstats
path: root/examples/threads/mandelbrot/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/threads/mandelbrot/main.cpp')
-rw-r--r--examples/threads/mandelbrot/main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/threads/mandelbrot/main.cpp b/examples/threads/mandelbrot/main.cpp
index 610534d4a3..5211c2051c 100644
--- a/examples/threads/mandelbrot/main.cpp
+++ b/examples/threads/mandelbrot/main.cpp
@@ -47,7 +47,11 @@ int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MandelbrotWidget widget;
+#if defined(Q_WS_S60)
+ widget.showMaximized();
+#else
widget.show();
+#endif
return app.exec();
}
//! [0]