Remove special showMaximized case for Maemo 5

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

Reviewed-by: Robert Griebl
This commit is contained in:
Thorbjørn Lindeijer
2010-03-23 17:21:17 +01:00
parent fb79d4251e
commit 1eceed92f1

View File

@@ -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();