diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.com> | 2014-02-27 17:33:01 +0100 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.com> | 2014-02-27 17:35:04 +0100 |
commit | 1c0e1b9c64b7c33008966e24a240819ec0b223f6 (patch) | |
tree | 8b40757e211dbb9f0ad381fec8b59cb5de7d8812 /sw | |
parent | cdd3fb6df0818d94303681392a1b2162097438cc (diff) |
ooxml export: w14:stylisticSets & w14:cntxtAlts element
Change-Id: I46e838fac213378f95389812b47ce5896f703505
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/docxattributeoutput.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
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 ) }, }; |