sc/source/core/data/document.cxx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-)
New commits: commit 80ec99db4325a439a8a3f1d420d0a80f8bf9c439 Author: Eike Rathke <er...@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 diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx index da6f2a9..90eb0fe 100644 --- a/sc/source/core/data/document.cxx +++ b/sc/source/core/data/document.cxx @@ -1796,12 +1796,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(); } _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits