@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!
#else m_pMainWindow->show(); #endif
#elif defined(Q_WS_MAEMO_5) || defined(Q_WS_MAEMO_6) m_pMainWindow->showMaximized(); #else m_pMainWindow->show(); #endif