From bd2145e740b61b69cda6456d483bcd62883e2fe3 Mon Sep 17 00:00:00 2001 From: Noel Power Date: Wed, 22 Feb 2012 15:08:21 +0000 Subject: force imported xlsx active tab to be shown bnc#748198 weirdly even though a sheet/tab can be marked as hidden in workbook.xml, if that same tab/sheet is the active one then it *will* be shown Signed-off-by: Andras Timar --- oox/source/xls/viewsettings.cxx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'oox') diff --git a/oox/source/xls/viewsettings.cxx b/oox/source/xls/viewsettings.cxx index 1eb07c76afc8..297b3dc9e2a4 100644 --- a/oox/source/xls/viewsettings.cxx +++ b/oox/source/xls/viewsettings.cxx @@ -498,7 +498,13 @@ void SheetViewSettings::finalizeImport() // sheet selected (active sheet must be selected) bool bSelected = xModel->mbSelected || (getSheetIndex() == getViewSettings().getActiveCalcSheet()); - + if ( bSelected ) + { + // active tab/sheet cannot be hidden + // always force it to be displayed + PropertySet aPropSet( getSheet() ); + aPropSet.setProperty( PROP_IsVisible, sal_True ); + } // visible area and current cursor position (selection not supported via API) CellAddress aFirstPos = xModel->maFirstPos; const PaneSelectionModel* pPaneSel = xModel->getActiveSelection(); -- cgit