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, 0 insertions, 4 deletions
diff --git a/examples/threads/mandelbrot/main.cpp b/examples/threads/mandelbrot/main.cpp
index 5211c2051c..610534d4a3 100644
--- a/examples/threads/mandelbrot/main.cpp
+++ b/examples/threads/mandelbrot/main.cpp
@@ -47,11 +47,7 @@ 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]