summaryrefslogtreecommitdiffstats
path: root/examples/network/http/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/network/http/main.cpp')
-rw-r--r--examples/network/http/main.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/examples/network/http/main.cpp b/examples/network/http/main.cpp
index 049d10dcc2..4b0bd9e76a 100644
--- a/examples/network/http/main.cpp
+++ b/examples/network/http/main.cpp
@@ -14,11 +14,7 @@ int main(int argc, char *argv[])
const QRect availableSize = httpWin.screen()->availableGeometry();
httpWin.resize(availableSize.width() / 5, availableSize.height() / 5);
httpWin.move((availableSize.width() - httpWin.width()) / 2, (availableSize.height() - httpWin.height()) / 2);
-#ifdef Q_OS_ANDROID
- httpWin.showMaximized();
-#else
httpWin.show();
-#endif
return app.exec();
}