Bug 517882 follow-up: Reorder nsStyleText constructor's initializer list to fix build warning. r=dbaron

This commit is contained in:
Daniel Holbert 2009-10-14 19:42:03 -07:00
parent b8b21b5b8b
commit f8bc963c56

View File

@ -2361,12 +2361,12 @@ nsStyleText::nsStyleText(const nsStyleText& aSource)
mTextTransform(aSource.mTextTransform),
mWhiteSpace(aSource.mWhiteSpace),
mWordWrap(aSource.mWordWrap),
mTabSize(aSource.mTabSize),
mLetterSpacing(aSource.mLetterSpacing),
mLineHeight(aSource.mLineHeight),
mTextIndent(aSource.mTextIndent),
mWordSpacing(aSource.mWordSpacing),
mTextShadow(aSource.mTextShadow),
mTabSize(aSource.mTabSize)
mTextShadow(aSource.mTextShadow)
{
MOZ_COUNT_CTOR(nsStyleText);
}