Bug 590202 - Meego Qt with meegotouch style plugins trying to initialize them always if Qt style "non-meego" not selected

And it crashes because we don't have MApplication initialized in child process r=oleg

--HG--
extra : rebase_source : e1369a56545735dd57b2ea5e380a28c7aede0184
This commit is contained in:
Petersen Jan Arne 2010-08-24 10:00:48 -07:00
Родитель 0ebc780bc0
Коммит 6be6834623
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -53,6 +53,9 @@ void nsQAppInstance::AddRef(void) {
const char *graphicsSystem = PR_GetEnv("MOZ_QT_GRAPHICSSYSTEM");
if (graphicsSystem)
QApplication::setGraphicsSystem(QString(graphicsSystem));
#if (MOZ_PLATFORM_MAEMO == 6)
QApplication::setStyle(QLatin1String("windows"));
#endif
sQAppInstance = new QApplication(gArgc, gArgv);
}
sQAppRefCount++;