[Libreoffice-commits] core.git: Branch 'feature/gsoc14-draw-chained-text-boxes' - svx/source
matteocam
matteo.campanelli at gmail.com
Mon Jun 22 13:11:28 PDT 2015
svx/source/svdraw/svdotextdecomposition.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 1786bcb6285c056aa74fcd3b552ada7d300496ec
Author: matteocam <matteo.campanelli at gmail.com>
Date: Mon Jun 22 16:10:59 2015 -0400
Fixed Underflow condition: should be not(overflow)
Change-Id: I58c6f2c0e3518ec200e3653f13804373580b4d25
diff --git a/svx/source/svdraw/svdotextdecomposition.cxx b/svx/source/svdraw/svdotextdecomposition.cxx
index 37c2384..6b00aacc 100644
--- a/svx/source/svdraw/svdotextdecomposition.cxx
+++ b/svx/source/svdraw/svdotextdecomposition.cxx
@@ -1669,7 +1669,7 @@ void SdrTextObj::impDecomposeChainedTextPrimitive(
/* Begin underflow handling */
- bool bIsPageUnderflow = rOutliner.IsPageOverflow() && !IsInEditMode();
+ bool bIsPageUnderflow = !rOutliner.IsPageOverflow() && !IsInEditMode();
if (bIsPageUnderflow) {
SdrTextObj *pNextLink = GetNextLinkInChain();
More information about the Libreoffice-commits
mailing list