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

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Mon Oct 15 19:57:19 UTC 2018


 sw/source/core/docnode/node.cxx |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit bafd49fb4d72b6dbb10b2fea1386d295dc9d435c
Author:     Bjoern Michaelsen <bjoern.michaelsen at libreoffice.org>
AuthorDate: Sun Oct 14 22:55:25 2018 +0200
Commit:     Björn Michaelsen <bjoern.michaelsen at libreoffice.org>
CommitDate: Mon Oct 15 21:56:55 2018 +0200

    tdf#118049 tdf#118833 tdf#118725: Fix some SwDepend regressions
    
    (partial revert/fix of 83243003b46dfb258c2b41049b0e1cb82a2d7ddb)
    
    Change-Id: I96213a41b026ee6496516ad1d0a416c5708a2300
    Reviewed-on: https://gerrit.libreoffice.org/61769
    Tested-by: Jenkins
    Tested-by: Xisco Faulí <xiscofauli at libreoffice.org>
    Reviewed-by: Björn Michaelsen <bjoern.michaelsen at libreoffice.org>

diff --git a/sw/source/core/docnode/node.cxx b/sw/source/core/docnode/node.cxx
index acafa528ac01..d59d39a820c2 100644
--- a/sw/source/core/docnode/node.cxx
+++ b/sw/source/core/docnode/node.cxx
@@ -1184,7 +1184,9 @@ SwFormatColl *SwContentNode::ChgFormatColl( SwFormatColl *pNewColl )
 
         if( !IsModifyLocked() )
         {
-            ChkCondColl();
+            SwFormatChg aTmp1( pOldColl );
+            SwFormatChg aTmp2( pNewColl );
+            SwClientNotify( *this, sw::LegacyModifyHint(&aTmp1, &aTmp2) );
         }
     }
     if ( IsInCache() )


More information about the Libreoffice-commits mailing list