From 95e5df825df6944a3f6b87114276fe4d05a6dfef Mon Sep 17 00:00:00 2001 From: Tatiana Meshkova Date: Wed, 24 Aug 2011 16:19:15 -0700 Subject: [PATCH] Bug 589982 - gfxQtPlatform::CreateFontGroup fails to build with --disable-pango; r=romaxa --- gfx/thebes/gfxQtPlatform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/thebes/gfxQtPlatform.cpp b/gfx/thebes/gfxQtPlatform.cpp index 24ac66b7804..b5481505cee 100644 --- a/gfx/thebes/gfxQtPlatform.cpp +++ b/gfx/thebes/gfxQtPlatform.cpp @@ -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 }