Pass on initial reflow to ProcessInitialReflow

This commit is contained in:
kipp 1998-05-29 02:15:00 +00:00
Родитель 189c6d2f00
Коммит b3f2588ada
2 изменённых файлов: 12 добавлений и 2 удалений

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

@ -801,7 +801,12 @@ NS_METHOD nsInlineFrame::Reflow(nsIPresContext* aPresContext,
}
#endif
//XXX not now NS_PRECONDITION((aMaxSize.width > 0) && (aMaxSize.height > 0), "unexpected max size");
if (eReflowReason_Initial == aReflowState.reason) {
nsresult rv = ProcessInitialReflow(aPresContext);
if (NS_OK != rv) {
return rv;
}
}
PRBool reflowMappedOK = PR_TRUE;

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

@ -801,7 +801,12 @@ NS_METHOD nsInlineFrame::Reflow(nsIPresContext* aPresContext,
}
#endif
//XXX not now NS_PRECONDITION((aMaxSize.width > 0) && (aMaxSize.height > 0), "unexpected max size");
if (eReflowReason_Initial == aReflowState.reason) {
nsresult rv = ProcessInitialReflow(aPresContext);
if (NS_OK != rv) {
return rv;
}
}
PRBool reflowMappedOK = PR_TRUE;