Hello,

If I create a simple application with qt creator for a mobile with symbian s60. It dosen't maximize the widgets with showMaximized.

Qt Code:
  1. int main(int argc, char *argv[])
  2. {
  3. QApplication a(argc, argv);
  4. MainWindow w;
  5. #if defined(Q_WS_S60)
  6. w.showMaximized();
  7. #else
  8. w.show();
  9. #endif
  10.  
  11. return a.exec();
  12. }
To copy to clipboard, switch view to plain text mode 

I don't understand why. Is there a bug?

Or maybe I have to run the function in another widget like the layout grid?

I'm a bit desperated.

Thank you.