Hello,
If I create a simple application with qt creator for a mobile with symbian s60. It dosen't maximize the widgets with showMaximized.
int main(int argc, char *argv[])
{
MainWindow w;
#if defined(Q_WS_S60)
w.showMaximized();
#else
w.show();
#endif
return a.exec();
}
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
#if defined(Q_WS_S60)
w.showMaximized();
#else
w.show();
#endif
return a.exec();
}
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.
Bookmarks