[Libreoffice-commits] core.git: Branch 'libreoffice-5-3' - sw/source

Michael Stahl mstahl at redhat.com
Thu Jul 27 15:29:34 UTC 2017


 sw/source/core/doc/DocumentContentOperationsManager.cxx |   13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

New commits:
commit be2a7025e5b62e9dab73886436ee52d5330ae381
Author: Michael Stahl <mstahl at redhat.com>
Date:   Fri Jul 21 22:55:51 2017 +0200

    tdf#99692 sw: fix bookmark positions in tables at start of redlines
    
    The code assumes that if it can move the cursor backward in line 2038,
    that move can be "inverted" by moving the cursor forward after the
    content has been moved - but if the cursor moved back a node, and the
    moved content does not start with a SwTextNode, the cursor will move
    forward skipping over the non-text nodes, so offsets in the aSaveBkmks
    (and aSaveRedl, presumably) are going to be wrong.
    
    Just don't use Move() if it leaves the current node.
    
    Change-Id: I95278a10c14aeba9f76558486bb2712f6726dbcb
    (cherry picked from commit 850795942b3e168cab8ce88b4f2b421945ff29ca)
    Reviewed-on: https://gerrit.libreoffice.org/40419
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/sw/source/core/doc/DocumentContentOperationsManager.cxx b/sw/source/core/doc/DocumentContentOperationsManager.cxx
index 9e64e0acdda6..d6e014e474ec 100644
--- a/sw/source/core/doc/DocumentContentOperationsManager.cxx
+++ b/sw/source/core/doc/DocumentContentOperationsManager.cxx
@@ -2029,12 +2029,19 @@ bool DocumentContentOperationsManager::MoveRange( SwPaM& rPaM, SwPosition& rPos,
 
     // Put back the Pam by one "content"; so that it's always outside of
     // the manipulated range.
-    // If there's no content anymore, set it to the StartNode (that's
-    // always there).
-    const bool bNullContent = !aSavePam.Move( fnMoveBackward, GoInContent );
+    // tdf#99692 don't Move() back if that would end up in another node
+    // because moving backward is not necessarily the inverse of forward then.
+    const bool bNullContent = aSavePam.GetPoint()->nContent == 0;
     if( bNullContent )
     {
         aSavePam.GetPoint()->nNode--;
+        aSavePam.GetPoint()->nContent.Assign(aSavePam.GetContentNode(), 0);
+    }
+    else
+    {
+        bool const success(aSavePam.Move(fnMoveBackward, GoInContent));
+        assert(success);
+        (void) success;
     }
 
     // Copy all Bookmarks that are within the Move range into an array,


More information about the Libreoffice-commits mailing list