diff options
author | Andre Fischer <af@apache.org> | 2012-07-11 08:07:30 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-05-15 16:15:37 +0100 |
commit | 694d65b5097062f26c532d7c123905bf07b106f2 (patch) | |
tree | fc016480ab23aa1b66f3fbb89559dde2d3e29bd8 /sc/source/ui/unoobj | |
parent | 0c99c1c2cafabf72b7cb32fc313441e52fd2876a (diff) |
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
Diffstat (limited to 'sc/source/ui/unoobj')
-rw-r--r-- | sc/source/ui/unoobj/cellsuno.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx index 40c602f77838..93192ae4083a 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 } |