[Libreoffice-commits] core.git: sw/source
Julien Nabet
serval2412 at yahoo.fr
Sun Mar 6 09:03:10 UTC 2016
sw/source/core/doc/docedt.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 72f50743af65eaa90b33486388e57fae9511f310
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Sun Mar 6 10:02:47 2016 +0100
cppcheck: help it a bit to not fail with syntax error in its AST
Change-Id: I22e1405b2ad94ec4d47011c3f11d108a1bde4fba
diff --git a/sw/source/core/doc/docedt.cxx b/sw/source/core/doc/docedt.cxx
index 4b8b977..7dc26e1 100644
--- a/sw/source/core/doc/docedt.cxx
+++ b/sw/source/core/doc/docedt.cxx
@@ -327,8 +327,8 @@ void sw_GetJoinFlags( SwPaM& rPam, bool& rJoinText, bool& rJoinPrev )
rJoinPrev = rPam.GetPoint() == pStt;
OSL_ENSURE( !pStt->nContent.GetIndex() &&
pEndNd->GetText().getLength() != pEnd->nContent.GetIndex()
- ? rPam.GetPoint()->nNode < rPam.GetMark()->nNode
- : rPam.GetPoint()->nNode > rPam.GetMark()->nNode,
+ ? (rPam.GetPoint()->nNode < rPam.GetMark()->nNode)
+ : (rPam.GetPoint()->nNode > rPam.GetMark()->nNode),
"sw_GetJoinFlags");
}
}
More information about the Libreoffice-commits
mailing list