Always init mMaxElementSize (bug 4836) - just in case

This commit is contained in:
kipp%netscape.com 1999-04-10 17:32:04 +00:00
Родитель 80ad2ee2bd
Коммит b2a6cc42f1
2 изменённых файлов: 4 добавлений и 2 удалений

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

@ -42,7 +42,8 @@ nsBlockReflowContext::nsBlockReflowContext(nsIPresContext& aPresContext,
PRBool aComputeMaxElementSize)
: mPresContext(aPresContext),
mOuterReflowState(aParentRS),
mMetrics(aComputeMaxElementSize ? &mMaxElementSize : nsnull)
mMetrics(aComputeMaxElementSize ? &mMaxElementSize : nsnull),
mMaxElementSize(0, 0)
{
mStyleSpacing = nsnull;
}

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

@ -42,7 +42,8 @@ nsBlockReflowContext::nsBlockReflowContext(nsIPresContext& aPresContext,
PRBool aComputeMaxElementSize)
: mPresContext(aPresContext),
mOuterReflowState(aParentRS),
mMetrics(aComputeMaxElementSize ? &mMaxElementSize : nsnull)
mMetrics(aComputeMaxElementSize ? &mMaxElementSize : nsnull),
mMaxElementSize(0, 0)
{
mStyleSpacing = nsnull;
}