mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-05-29 07:17:05 +00:00
ported from UXP: Issue #1916 - Part 1: Convert flags passed to ReflowChild, FinishReflowChild, etc into an enum class. (0423d835)
This commit is contained in:
@@ -562,11 +562,12 @@ nsSVGForeignObjectFrame::DoReflow()
|
||||
reflowInput.SetComputedBSize(BSize(wm));
|
||||
|
||||
ReflowChild(kid, presContext, desiredSize, reflowInput, 0, 0,
|
||||
NS_FRAME_NO_MOVE_FRAME, status);
|
||||
ReflowChildFlags::NoMoveFrame, status);
|
||||
NS_ASSERTION(mRect.width == desiredSize.Width() &&
|
||||
mRect.height == desiredSize.Height(), "unexpected size");
|
||||
mRect.height == desiredSize.Height(),
|
||||
"unexpected size");
|
||||
FinishReflowChild(kid, presContext, desiredSize, &reflowInput, 0, 0,
|
||||
NS_FRAME_NO_MOVE_FRAME);
|
||||
ReflowChildFlags::NoMoveFrame);
|
||||
|
||||
mInReflow = false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user