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

Andre Fischer af at apache.org
Wed May 15 08:16:00 PDT 2013


 sc/source/ui/unoobj/cellsuno.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 694d65b5097062f26c532d7c123905bf07b106f2
Author: Andre Fischer <af at apache.org>
Date:   Wed Jul 11 08:07:30 2012 +0000

    Resolves: #i20044# Fixed queryEmptyCell()
    
    Reported by: Steffen Grund
    Patch by: hanya:
    Review by: Andre Fischer
    (cherry picked from commit f42a00437a682d479e82256b2fdf873dd097c428)
    
    Conflicts:
    	sc/source/ui/unoobj/cellsuno.cxx
    
    Change-Id: I43db011e138a79bd3a871e68a7331d26267e7899

diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx
index 40c602f..93192ae 100644
--- a/sc/source/ui/unoobj/cellsuno.cxx
+++ b/sc/source/ui/unoobj/cellsuno.cxx
@@ -3569,8 +3569,8 @@ uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryEmptyCel
 
         ScRangeList aNewRanges;
         //  IsMultiMarked reicht hier nicht (wird beim deselektieren nicht zurueckgesetzt)
-        if (aMarkData.HasAnyMultiMarks())
-            aMarkData.FillRangeListWithMarks( &aNewRanges, false );
+        //if (aMarkData.HasAnyMultiMarks()) // #i20044# should be set for all empty range
+        aMarkData.FillRangeListWithMarks( &aNewRanges, false );
 
         return new ScCellRangesObj( pDocShell, aNewRanges );    // aNewRanges kann leer sein
     }


More information about the Libreoffice-commits mailing list