diff options
author | Noel Power <noel.power@novell.com> | 2012-02-22 15:08:21 +0000 |
---|---|---|
committer | Noel Power <noel.power@novell.com> | 2012-02-22 15:08:21 +0000 |
commit | 768da511046f22346874734da2418117f71dcd11 (patch) | |
tree | f5fe879ca40d5c9e8cbad6f8f5bb76f1ea009575 | |
parent | d453788ac0476cc02b929b0907718ca771d6d956 (diff) |
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
-rw-r--r-- | oox/source/xls/viewsettings.cxx | 8 |
1 files changed, 7 insertions, 1 deletions
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(); |