View Single Post
daperl's Avatar
Posts: 2,427 | Thanked: 2,986 times | Joined on Dec 2007
#7
@fcrochik

In application.cpp, I had to change:

Code:
#else
    m_pMainWindow->show();
#endif
to

Code:
#elif defined(Q_WS_MAEMO_5) || defined(Q_WS_MAEMO_6)
    m_pMainWindow->showMaximized();
#else
    m_pMainWindow->show();
#endif
in order to stop seg faulting on an n900. I'm guessing this has to do with changes in the most recent Qt libraries and/or development tools.

Love the app!
__________________
N9: Go white or go home
 

The Following User Says Thank You to daperl For This Useful Post: