Skip to content
Snippets Groups Projects
Commit 1eceed92 authored by Thorbjørn Lindeijer's avatar Thorbjørn Lindeijer
Browse files

Remove special showMaximized case for Maemo 5

The Maemo 5 window manager already makes sure applications always run
maximized.

Reviewed-by: Robert Griebl
parent fb79d425
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ int main(int argc, char *argv[])
{
QApplication a(argc, argv);
%CLASS% w;
#if defined(Q_WS_S60) || defined(Q_WS_MAEMO_5)
#if defined(Q_WS_S60)
w.showMaximized();
#else
w.show();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment