fix bustage when freetype is not present at compile time.

This commit is contained in:
bryner%netscape.com 2003-04-10 00:40:32 +00:00
Родитель 6289171e86
Коммит 65672e8575
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -119,9 +119,11 @@ nsIPref* nsFT2FontCatalog::sPref = nsnull;
NS_IMPL_ISUPPORTS1(nsFT2FontCatalog, nsIFontCatalogService)
nsFT2FontCatalog::nsFT2FontCatalog()
#ifdef MOZ_ENABLE_FREETYPE2
: mFontCatalog(nsnull),
mRange1Language(nsnull),
mRange2Language(nsnull)
#endif
{
#if (defined(MOZ_ENABLE_FREETYPE2))
nsresult rv;