mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 745991: In nsCSSFrameConstructor::MaybeRecreateContainerForFrameRemoval, add explicit parenthesis around '&&' within '||' to silence GCC warning. r=smontagu
This commit is contained in:
parent
b7a5d44d03
commit
3643243851
@ -8969,8 +8969,8 @@ nsCSSFrameConstructor::MaybeRecreateContainerForFrameRemoval(nsIFrame* aFrame,
|
||||
// a non-fluid continuation, i.e. it was split by bidi resolution
|
||||
if (!inFlowFrame->GetPrevSibling() &&
|
||||
!inFlowFrame->GetNextSibling() &&
|
||||
(parent->GetPrevContinuation() && !parent->GetPrevInFlow() ||
|
||||
parent->GetNextContinuation() && !parent->GetNextInFlow())) {
|
||||
((parent->GetPrevContinuation() && !parent->GetPrevInFlow()) ||
|
||||
(parent->GetNextContinuation() && !parent->GetNextInFlow()))) {
|
||||
*aResult = RecreateFramesForContent(parent->GetContent(), true);
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user