diff options
author | Cédric Bosdonnat <cedric.bosdonnat@free.fr> | 2013-04-29 15:41:37 +0200 |
---|---|---|
committer | Cédric Bosdonnat <cedric.bosdonnat@free.fr> | 2013-04-30 09:34:28 +0200 |
commit | b399c1a38cf7217bf530af3a78e8472d97890ac8 (patch) | |
tree | f0141f4a134d19fc0c693c0855024785c65608f8 /include/oox | |
parent | e7ecf663883478e0705e83e0a63b4abe6757b01d (diff) |
n#592908: docx import, fixed handling of w10:wrap
commit f837c4288cdae4921b3fb6747ba2e2cd5ce2dcd2 moved the handling of
w10:wrap tag in oox, but thus no wrapping was imported any more.
The fix consists in letting the w10:wrap element be handled by writerfilter's
dmapper if the shape has already been retrieved from oox (which is the
case for textboxes). In other cases, make sure that we don't set the
Surround property once again in writerfilter as that would override what
has been done in oox.
(cherry picked from commit 51d5e90b7c09cb980bc72a2c6b1a65303ef15ea2)
Conflicts:
oox/inc/oox/vml/vmlshape.hxx
sw/qa/extras/ooxmlimport/ooxmlimport.cxx
Change-Id: I8ab158641afcf6b9945c52238e7f5adb9e8b3adf
Diffstat (limited to 'include/oox')
-rw-r--r-- | include/oox/vml/vmlshape.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/oox/vml/vmlshape.hxx b/include/oox/vml/vmlshape.hxx index 7b6a4a9376c7..e16fe90635c8 100644 --- a/include/oox/vml/vmlshape.hxx +++ b/include/oox/vml/vmlshape.hxx @@ -93,6 +93,8 @@ struct OOX_DLLPUBLIC ShapeTypeModel OptValue< OUString > moGraphicTitle; ///< Title of the graphic. OptValue< OUString > moWrapAnchorX; ///< The base object from which our horizontal positioning should be calculated. OptValue< OUString > moWrapAnchorY; ///< The base object from which our vertical positioning should be calculated. + OptValue< ::rtl::OUString > moWrapType; ///< How to wrap the text around the object + OptValue< ::rtl::OUString > moWrapSide; ///< On which side to wrap the text around the object explicit ShapeTypeModel(); |