Bug 589982 - gfxQtPlatform::CreateFontGroup fails to build with --disable-pango; r=romaxa

This commit is contained in:
Tatiana Meshkova 2011-08-24 16:19:15 -07:00
Родитель 3be600d422
Коммит 95e5df825d
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -437,7 +437,7 @@ gfxQtPlatform::CreateFontGroup(const nsAString &aFamilies,
#ifdef MOZ_PANGO
return new gfxPangoFontGroup(aFamilies, aStyle, aUserFontSet);
#else
return new gfxFT2FontGroup(aFamilies, aStyle);
return new gfxFT2FontGroup(aFamilies, aStyle, aUserFontSet);
#endif
}