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

Markus Mohrhard markus.mohrhard at googlemail.com
Tue Jun 27 21:15:48 UTC 2017


 sc/source/core/data/conditio.cxx |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 4a3cb4a7e9ff2e84ea29e3fe66dd8c92d4e5a50f
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date:   Tue Jun 27 19:31:19 2017 +0200

    fix conditional format source position during insert/deleting tabs, tdf#107289
    
    Change-Id: Idb177c9e4800681f5386dbc233b9166798a8fb72
    Reviewed-on: https://gerrit.libreoffice.org/39320
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>

diff --git a/sc/source/core/data/conditio.cxx b/sc/source/core/data/conditio.cxx
index eab769e70b0d..2256947ed7b7 100644
--- a/sc/source/core/data/conditio.cxx
+++ b/sc/source/core/data/conditio.cxx
@@ -36,6 +36,7 @@
 #include "rangelst.hxx"
 #include "stlpool.hxx"
 #include "rangenam.hxx"
+#include "rangeutl.hxx"
 #include "colorscale.hxx"
 #include "cellvalue.hxx"
 #include "editutil.hxx"
@@ -627,7 +628,7 @@ void ScConditionEntry::UpdateInsertTab( sc::RefUpdateInsertTabContext& rCxt )
         DELETEZ(pFCell2);
     }
 
-    StartListening();
+    ScRangeUpdater::UpdateInsertTab(aSrcPos, rCxt);
 }
 
 void ScConditionEntry::UpdateDeleteTab( sc::RefUpdateDeleteTabContext& rCxt )
@@ -644,6 +645,7 @@ void ScConditionEntry::UpdateDeleteTab( sc::RefUpdateDeleteTabContext& rCxt )
         DELETEZ(pFCell2);
     }
 
+    ScRangeUpdater::UpdateDeleteTab(aSrcPos, rCxt);
     StartListening();
 }
 


More information about the Libreoffice-commits mailing list