[Libreoffice-commits] core.git: Branch 'libreoffice-5-2' - sc/source
Bartosz Kosiorek
gang65 at poczta.onet.pl
Fri Nov 11 15:34:09 UTC 2016
sc/source/filter/excel/xeview.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit a6114042c590ff319e7d1877935e56e6c77bc3ee
Author: Bartosz Kosiorek <gang65 at poczta.onet.pl>
Date: Thu Oct 20 10:50:31 2016 +0200
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 at redhat.com>
Tested-by: Eike Rathke <erack at redhat.com>
(cherry picked from commit 0637d0f43d3dc5b41a1bbc5726d6a68b7c36a519)
Reviewed-on: https://gerrit.libreoffice.org/30777
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/sc/source/filter/excel/xeview.cxx b/sc/source/filter/excel/xeview.cxx
index 09fbbc1..550c9ed 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 ),
More information about the Libreoffice-commits
mailing list