diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2008-04-18 10:37:48 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2008-04-18 10:37:48 +0000 |
commit | ac1bb1f5657ec5abf630327abc5532a0a2f5cc0b (patch) | |
tree | 026c21c742de3a100be5a8d6d7e21fcac36a4f14 /sc/source/ui/pagedlg | |
parent | b4141870a317595575b21c145cd5b5ce15218052 (diff) |
INTEGRATION: CWS filteredrows (1.14.308); FILE MERGED
2008/03/19 18:31:52 er 1.14.308.1: #i33851# first wave: treat filtered simple area selection as if it was a multi-selection, effectively disabling all operations that are not supported for a multi-selection
Diffstat (limited to 'sc/source/ui/pagedlg')
-rw-r--r-- | sc/source/ui/pagedlg/areasdlg.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/pagedlg/areasdlg.cxx b/sc/source/ui/pagedlg/areasdlg.cxx index a6d390d41..06543307f 100644 --- a/sc/source/ui/pagedlg/areasdlg.cxx +++ b/sc/source/ui/pagedlg/areasdlg.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: areasdlg.cxx,v $ - * $Revision: 1.15 $ + * $Revision: 1.16 $ * * This file is part of OpenOffice.org. * @@ -412,7 +412,7 @@ void ScPrintAreasDlg::Impl_FillLists() BOOL bSimple = TRUE; if ( pViewData ) - bSimple = pViewData->GetSimpleArea( aRange ); + bSimple = (pViewData->GetSimpleArea( aRange ) == SC_MARK_SIMPLE); if ( bSimple ) aRange.Format( aStrRange, SCR_ABS, pDoc ); |