Bug 449751 gfxFont.cpp failed to compile with Sun Studio 12 r=jdaggett sr=pavlov

This commit is contained in:
Ginn Chen 2008-08-18 16:31:53 +08:00
Родитель 107cd6b18f
Коммит e6b2bd7c00
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1123,7 +1123,7 @@ void gfxFontGroup::ComputeRanges(nsTArray<gfxTextRange>& aRanges, const PRUnicha
}
// find the font for this char
nsRefPtr<gfxFont> font = FindFontForChar(ch, prevCh, nextCh, (aRanges.Length() == 0) ? nsnull : aRanges[aRanges.Length() - 1].font);
nsRefPtr<gfxFont> font = FindFontForChar(ch, prevCh, nextCh, (aRanges.Length() == 0) ? nsnull : aRanges[aRanges.Length() - 1].font.get());
prevCh = ch;