mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 870555 part 1: Add curly braces around early-return in nsBlockFrame::GetSkipSides, for clarity. r=mats
This commit is contained in:
parent
810f76b196
commit
448db15f5b
@ -6002,8 +6002,9 @@ nsBlockFrame::RecoverFloatsFor(nsIFrame* aFrame,
|
||||
int
|
||||
nsBlockFrame::GetSkipSides() const
|
||||
{
|
||||
if (IS_TRUE_OVERFLOW_CONTAINER(this))
|
||||
if (IS_TRUE_OVERFLOW_CONTAINER(this)) {
|
||||
return (1 << NS_SIDE_TOP) | (1 << NS_SIDE_BOTTOM);
|
||||
}
|
||||
|
||||
int skip = 0;
|
||||
if (GetPrevInFlow()) {
|
||||
|
Loading…
Reference in New Issue
Block a user