sw/source/core/undo/unattr.cxx |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit dc6e005c79b6c23b805dea44cd89fa83ea945f03
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Mon Sep 28 14:05:00 2020 +0100
Commit:     Michael Stahl <michael.st...@cib.de>
CommitDate: Tue Sep 29 12:05:36 2020 +0200

    tdf#133358 fix crash in redoing indent
    
    since...
    
    commit b070202b420129b5edd368420e0e50ec45261d01
    Date:   Tue Nov 20 18:26:18 2018 +0100
    
        sw_redlinehide_4a: SwEditShell::IsMoveLeftMargin(), MoveLeftMargin()
    
    Change-Id: Ie28207747560153020341305015f1693f6ca9f50
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103552
    Tested-by: Jenkins
    Reviewed-by: Michael Stahl <michael.st...@cib.de>

diff --git a/sw/source/core/undo/unattr.cxx b/sw/source/core/undo/unattr.cxx
index 9dcb56ae83a0..ba6608b7a92b 100644
--- a/sw/source/core/undo/unattr.cxx
+++ b/sw/source/core/undo/unattr.cxx
@@ -913,14 +913,15 @@ void SwUndoMoveLeftMargin::RedoImpl(::sw::UndoRedoContext 
& rContext)
     SwPaM & rPam = AddUndoRedoPaM(rContext);
 
     rDoc.MoveLeftMargin( rPam,
-                         GetId() == SwUndoId::INC_LEFTMARGIN, m_bModulus );
+                         GetId() == SwUndoId::INC_LEFTMARGIN, m_bModulus,
+                         rDoc.getIDocumentLayoutAccess().GetCurrentLayout() );
 }
 
 void SwUndoMoveLeftMargin::RepeatImpl(::sw::RepeatContext & rContext)
 {
     SwDoc & rDoc = rContext.GetDoc();
     rDoc.MoveLeftMargin(rContext.GetRepeatPaM(), GetId() == 
SwUndoId::INC_LEFTMARGIN,
-                        m_bModulus );
+                        m_bModulus, 
rDoc.getIDocumentLayoutAccess().GetCurrentLayout());
 }
 
 SwUndoChangeFootNote::SwUndoChangeFootNote(
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to