summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2013-12-12 11:38:47 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2013-12-12 12:09:02 +0100
commitae6b44c32582d40cd63e7b475cb76047aea49e65 (patch)
treee3ec2a43d5b84134e4124895af319e45ded0cbef
parent7b3c5cb12e91ce2a88b232c099366e7d1f633e7e (diff)
DOCX export: declare wpg namespace
Change-Id: If204d95142826d4cc194aed8a97c68a121187b8a
-rw-r--r--oox/source/token/tokens.txt1
-rw-r--r--sw/source/filter/ww8/docxexport.cxx1
2 files changed, 2 insertions, 0 deletions
diff --git a/oox/source/token/tokens.txt b/oox/source/token/tokens.txt
index 648162efb709..fbdd2fca8192 100644
--- a/oox/source/token/tokens.txt
+++ b/oox/source/token/tokens.txt
@@ -5663,6 +5663,7 @@ wrapTopAndBottom
wrapTrailSpaces
wrapcoords
writeProtection
+wpg
wps
wsp
wsDr
diff --git a/sw/source/filter/ww8/docxexport.cxx b/sw/source/filter/ww8/docxexport.cxx
index 17cf70fbcf2a..35383d4dddfd 100644
--- a/sw/source/filter/ww8/docxexport.cxx
+++ b/sw/source/filter/ww8/docxexport.cxx
@@ -1058,6 +1058,7 @@ XFastAttributeListRef DocxExport::MainXmlNamespaces( FSHelperPtr serializer )
pAttr->add( FSNS( XML_xmlns, XML_w10 ), "urn:schemas-microsoft-com:office:word" );
pAttr->add( FSNS( XML_xmlns, XML_wp ), "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" );
pAttr->add( FSNS( XML_xmlns, XML_wps ), "http://schemas.microsoft.com/office/word/2010/wordprocessingShape" );
+ pAttr->add( FSNS( XML_xmlns, XML_wpg ), "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" );
pAttr->add( FSNS( XML_xmlns, XML_mc ), "http://schemas.openxmlformats.org/markup-compatibility/2006" );
return XFastAttributeListRef( pAttr );
}