diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-03-06 10:49:14 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-03-06 11:25:34 +0100 |
commit | 804397dfb6cc1415bd4e94c3c7b1a5af469613d9 (patch) | |
tree | bb4b165b10f6a8e857f9326edef4e47efdc09312 /oox/source | |
parent | db2bb66d29ba841634acea57ddf5e476884e7744 (diff) |
fix OOXML validation error, related fdo#31064
Use the correct namespace for wrap.
Change-Id: I5620d3386fcaf54090fd58963404dde3f03c5bf8
Diffstat (limited to 'oox/source')
-rw-r--r-- | oox/source/export/vmlexport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/export/vmlexport.cxx b/oox/source/export/vmlexport.cxx index f348439f1eb8..de62d73c92f6 100644 --- a/oox/source/export/vmlexport.cxx +++ b/oox/source/export/vmlexport.cxx @@ -365,7 +365,7 @@ void VMLExport::Commit( EscherPropertyContainer& rProps, const Rectangle& rRect case ESCHER_WrapThrough: pWrapType = "through"; break; } if ( pWrapType ) - m_pSerializer->singleElementNS( XML_v, XML_wrap, + m_pSerializer->singleElementNS( XML_w10, XML_wrap, FSNS( XML_v, XML_type ), pWrapType, FSEND ); } |