From 1c0e1b9c64b7c33008966e24a240819ec0b223f6 Mon Sep 17 00:00:00 2001 From: Tomaž Vajngerl Date: Thu, 27 Feb 2014 17:33:01 +0100 Subject: ooxml export: w14:stylisticSets & w14:cntxtAlts element Change-Id: I46e838fac213378f95389812b47ce5896f703505 --- sw/source/filter/ww8/docxattributeoutput.cxx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx index 65b41a511bd7..c4700b4441e5 100644 --- a/sw/source/filter/ww8/docxattributeoutput.cxx +++ b/sw/source/filter/ww8/docxattributeoutput.cxx @@ -1181,6 +1181,8 @@ void DocxAttributeOutput::InitCollectedRunProperties() FSNS( XML_w14, XML_ligatures ), FSNS( XML_w14, XML_numForm ), FSNS( XML_w14, XML_numSpacing ), + FSNS( XML_w14, XML_stylisticSets ), + FSNS( XML_w14, XML_cntxtAlts ), }; // postpone the output so that we can later [in EndParagraphProperties()] @@ -1215,6 +1217,8 @@ const NameToId constNameToIdMapping[] = { OUString("ligatures"), FSNS( XML_w14, XML_ligatures ) }, { OUString("numForm"), FSNS( XML_w14, XML_numForm ) }, { OUString("numSpacing"), FSNS( XML_w14, XML_numSpacing ) }, + { OUString("stylisticSets"),FSNS( XML_w14, XML_stylisticSets ) }, + { OUString("cntxtAlts"), FSNS( XML_w14, XML_cntxtAlts ) }, { OUString("val"), FSNS( XML_w14, XML_val ) }, { OUString("rad"), FSNS( XML_w14, XML_rad ) }, @@ -1252,6 +1256,7 @@ const NameToId constNameToIdMapping[] = { OUString("extrusionH"), FSNS( XML_w14, XML_extrusionH ) }, { OUString("contourW"), FSNS( XML_w14, XML_contourW ) }, { OUString("prstMaterial"), FSNS( XML_w14, XML_prstMaterial ) }, + { OUString("id"), FSNS( XML_w14, XML_id ) }, { OUString("schemeClr"), FSNS( XML_w14, XML_schemeClr ) }, { OUString("srgbClr"), FSNS( XML_w14, XML_srgbClr ) }, @@ -1285,6 +1290,7 @@ const NameToId constNameToIdMapping[] = { OUString("bevelB"), FSNS( XML_w14, XML_bevelB ) }, { OUString("extrusionClr"), FSNS( XML_w14, XML_extrusionClr ) }, { OUString("contourClr"), FSNS( XML_w14, XML_contourClr ) }, + { OUString("styleSet"), FSNS( XML_w14, XML_styleSet ) }, }; -- cgit