summaryrefslogtreecommitdiff
path: root/oox/source
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-03-06 10:49:14 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-03-06 11:25:34 +0100
commit804397dfb6cc1415bd4e94c3c7b1a5af469613d9 (patch)
treebb4b165b10f6a8e857f9326edef4e47efdc09312 /oox/source
parentdb2bb66d29ba841634acea57ddf5e476884e7744 (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.cxx2
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 );
}