Bug 509828 followup: Reorder nsXULWindow constructor's initializer list, to fix build warning. r=bz

This commit is contained in:
Daniel Holbert 2009-11-12 09:23:31 -08:00
Родитель e101237ab1
Коммит 816900d7a4
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -143,15 +143,15 @@ nsXULWindow::nsXULWindow(PRUint32 aChromeFlags)
mCenterAfterLoad(PR_FALSE),
mIsHiddenWindow(PR_FALSE),
mLockedUntilChromeLoad(PR_FALSE),
mIgnoreXULSize(PR_FALSE),
mIgnoreXULPosition(PR_FALSE),
mContextFlags(0),
mBlurSuppressionLevel(0),
mPersistentAttributesDirty(0),
mPersistentAttributesMask(0),
mChromeFlags(aChromeFlags),
// best guess till we have a widget
mAppPerDev(nsPresContext::AppUnitsPerCSSPixel()),
mIgnoreXULSize(PR_FALSE),
mIgnoreXULPosition(PR_FALSE)
mAppPerDev(nsPresContext::AppUnitsPerCSSPixel())
{
}