Commit af38a5be authored by Daniel Holbert's avatar Daniel Holbert
Browse files

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

parent d3f9d68e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -46,8 +46,8 @@ nsFontFace::nsFontFace(gfxFontEntry* aFontEntry,
                       PRUint8            aMatchType,
                       nsCSSFontFaceRule* aRule)
  : mFontEntry(aFontEntry),
    mMatchType(aMatchType),
    mRule(aRule)
    mRule(aRule),
    mMatchType(aMatchType)
{
}