1 From 3e8f5ab3cc7fc0286f3048ed2cc020a9c16c9aa5 Mon Sep 17 00:00:00 2001
2 From: Jan Nieuwenhuizen <janneke@gnu.org>
3 Date: Tue, 12 May 2009 16:20:36 +0200
4 Subject: [PATCH] OOXML: do not write XML_useAutoFormatting key without value. Fixes n#497560.
6 * Modified sc/source/filter/xlsx/xlsx-xepivot.cxx
9 sc/source/filter/xlsx/xlsx-xepivot.cxx | 4 +++-
10 1 files changed, 3 insertions(+), 1 deletions(-)
12 diff --git sc/source/filter/xlsx/xlsx-xepivot.cxx sc/source/filter/xlsx/xlsx-xepivot.cxx
13 index d255cc4..c19bee2 100644
14 --- sc/source/filter/xlsx/xlsx-xepivot.cxx
15 +++ sc/source/filter/xlsx/xlsx-xepivot.cxx
16 @@ -1376,7 +1376,9 @@ void XclExpPivotTable::SaveXml( XclExpXmlStream& rStrm )
17 XML_enableDrill, XclXmlUtils::ToPsz( maPTExtInfo.mnFlags & EXC_SXEX_DRILLDOWN ), // ???
18 // OOXTODO: XML_enableFieldProperties, [ SXEx fEnableFieldDialog (maPTExtInfo.mnFlags) ]
19 // OOXTODO: XML_preserveFormatting, [ SXEx fPreserveFormatting (maPTExtInfo.mnFlags) ]
20 - XML_useAutoFormatting,
22 + // XML_useAutoFormatting, [???],
24 // OOXTODO: XML_pageWrap, [ SXEx cWrapPage (maPTExtInfo.mnFlags) ]
25 // OOXTODO: XML_pageOverThenDown, [ SXEx fAcrossPageLay (maPTExtInfo.mnFlags) ]
26 // OOXTODO: XML_subtotalHiddenItems, [ SXEx fSubtotalHiddenPageItems (maPTExtInfo.mnFlags) ]