Bug 678768: Fix out-of-order init list for nsFontFace constructor. r=jfkthame

This commit is contained in:
Daniel Holbert 2011-08-14 10:39:56 -07:00
Родитель d3f9d68e9e
Коммит af38a5be63
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -46,8 +46,8 @@ nsFontFace::nsFontFace(gfxFontEntry* aFontEntry,
PRUint8 aMatchType,
nsCSSFontFaceRule* aRule)
: mFontEntry(aFontEntry),
mMatchType(aMatchType),
mRule(aRule)
mRule(aRule),
mMatchType(aMatchType)
{
}