diff options
author | Bartosz Kosiorek <gang65@poczta.onet.pl> | 2016-10-20 10:50:31 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2016-11-11 13:01:48 +0000 |
commit | 0637d0f43d3dc5b41a1bbc5726d6a68b7c36a519 (patch) | |
tree | 80bbc829cb82f2e832ef271c44ecbeeafd624dd5 /sc | |
parent | 518e1999c4a77e6a8fb7ddf02568461d0343bb9a (diff) |
tdf#101042 Fix for frozen windows in Excel
Window protection is "not allowed to move and resize windows" in MS Excel,
it is definitely not Frozen Panes ( maData.mbFrozenPanes )
Change-Id: I04f0429738a6daecb26274f169c5118dba73e895
Reviewed-on: https://gerrit.libreoffice.org/30076
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/xeview.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xeview.cxx b/sc/source/filter/excel/xeview.cxx index 09fbbc1fef52..550c9ed71f86 100644 --- a/sc/source/filter/excel/xeview.cxx +++ b/sc/source/filter/excel/xeview.cxx @@ -414,7 +414,7 @@ void XclExpTabViewSettings::SaveXml( XclExpXmlStream& rStrm ) sax_fastparser::FSHelperPtr& rWorksheet = rStrm.GetCurrentStream(); rWorksheet->startElement( XML_sheetViews, FSEND ); rWorksheet->startElement( XML_sheetView, - XML_windowProtection, XclXmlUtils::ToPsz( maData.mbFrozenPanes ), + // OOXTODO: XML_windowProtection, XML_showFormulas, XclXmlUtils::ToPsz( maData.mbShowFormulas ), XML_showGridLines, XclXmlUtils::ToPsz( maData.mbShowGrid ), XML_showRowColHeaders, XclXmlUtils::ToPsz( maData.mbShowHeadings ), |