[Libreoffice-commits] core.git: sw/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Thu Dec 20 13:27:15 UTC 2018


 sw/source/core/text/txtfrm.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit df1adbec35df3cdb16b97cf8a9b85bf4a935ff41
Author:     Michael Stahl <Michael.Stahl at cib.de>
AuthorDate: Thu Dec 20 12:57:24 2018 +0100
Commit:     Michael Stahl <Michael.Stahl at cib.de>
CommitDate: Thu Dec 20 14:26:49 2018 +0100

    sw_redlinehide: don't return COMPLETE_STRING from MapModelToView()
    
    The anchor position of a fly frame can be on an empty node after the
    last non-deleted text, and SwAnchoredObject::CheckCharRect()
    needs to get a valid frame index for that.
    
    This can be reproduced with ooo69593-1.odt.
    
    Change-Id: I448bb49d64e72b0af24306bd7c45755aa631b57d
    Reviewed-on: https://gerrit.libreoffice.org/65488
    Tested-by: Jenkins
    Reviewed-by: Michael Stahl <Michael.Stahl at cib.de>

diff --git a/sw/source/core/text/txtfrm.cxx b/sw/source/core/text/txtfrm.cxx
index 9f0a459fb321..286bb465a516 100644
--- a/sw/source/core/text/txtfrm.cxx
+++ b/sw/source/core/text/txtfrm.cxx
@@ -1145,7 +1145,7 @@ TextFrameIndex MapModelToView(MergedPara const& rMerged, SwTextNode const*const
         assert(nIndex <= pNode->Len());
         return TextFrameIndex(0);
     }
-    return TextFrameIndex(COMPLETE_STRING);
+    return TextFrameIndex(rMerged.mergedText.getLength());
 }
 
 } // namespace sw


More information about the Libreoffice-commits mailing list