[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - sc/source

Eike Rathke erack at redhat.com
Mon Jun 15 15:45:36 PDT 2015


 sc/source/core/data/document.cxx |   11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

New commits:
commit ce38023a48bf4e14a18fe964ca7ebb50a3ef597c
Author: Eike Rathke <erack at redhat.com>
Date:   Mon Jun 15 23:45:28 2015 +0200

    Resolves: tdf#91411 end listening only on selected sheets
    
    ... not in cell areas of all sheets.
    
    Change-Id: I8d19c15c6d8d89652ac5695214bc4dd930783087
    (cherry picked from commit 80ec99db4325a439a8a3f1d420d0a80f8bf9c439)

diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx
index 57a8393..14ab9ac 100644
--- a/sc/source/core/data/document.cxx
+++ b/sc/source/core/data/document.cxx
@@ -1795,12 +1795,15 @@ void ScDocument::DeleteArea(
         // the area borders.
         sc::EndListeningContext aCxt(*this);
         ScRange aRange(nCol1, nRow1, 0, nCol2, nRow2, 0);
-        for (size_t i = 0; i < maTabs.size(); ++i)
+        for (SCTAB i = 0; i < static_cast<SCTAB>(maTabs.size()); i++)
         {
-            aRange.aStart.SetTab(i);
-            aRange.aEnd.SetTab(i);
+            if (rMark.GetTableSelect(i))
+            {
+                aRange.aStart.SetTab(i);
+                aRange.aEnd.SetTab(i);
 
-            EndListeningIntersectedGroups(aCxt, aRange, &aGroupPos);
+                EndListeningIntersectedGroups(aCxt, aRange, &aGroupPos);
+            }
         }
         aCxt.purgeEmptyBroadcasters();
     }


More information about the Libreoffice-commits mailing list