Build bustage fix, bug 368799.

This commit is contained in:
bzbarsky%mit.edu 2007-02-09 02:19:10 +00:00
Родитель 33c2ea69de
Коммит 5b5ea527c2
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -525,7 +525,7 @@ public:
gfxWrapperTextRun(gfxWindowsFontGroup *aGroup,
const PRUint8* aString, PRUint32 aLength,
gfxTextRunFactory::Parameters* aParams)
: gfxTextRun(aParams, PR_TRUE), mContext(aParams->mContext),
: gfxTextRun(aParams), mContext(aParams->mContext),
mInner(nsDependentCSubstring(reinterpret_cast<const char*>(aString),
reinterpret_cast<const char*>(aString + aLength)),
aGroup),
@ -536,7 +536,7 @@ public:
gfxWrapperTextRun(gfxWindowsFontGroup *aGroup,
const PRUnichar* aString, PRUint32 aLength,
gfxTextRunFactory::Parameters* aParams)
: gfxTextRun(aParams, PR_TRUE), mContext(aParams->mContext),
: gfxTextRun(aParams), mContext(aParams->mContext),
mInner(nsDependentSubstring(aString, aString + aLength), aGroup),
mLength(aLength)
{