From 870a2394a87c77740daf41e1aa81b130113f8e00 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Fri, 6 Sep 2013 12:29:46 +0200 Subject: bnc#779642 VML import: handle drawinglayer rectangle inset Change-Id: If8b064ca9a52bb02ff41f07e00142702a29df818 --- oox/source/vml/vmlshape.cxx | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'oox/source') diff --git a/oox/source/vml/vmlshape.cxx b/oox/source/vml/vmlshape.cxx index 186bd509f537..26cc704d37ef 100644 --- a/oox/source/vml/vmlshape.cxx +++ b/oox/source/vml/vmlshape.cxx @@ -594,7 +594,16 @@ Reference< XShape > SimpleShape::implConvertAndInsert( const Reference< XShapes PropertySet(xShape).setAnyProperty(PROP_TextVerticalAdjust, makeAny(eTextVerticalAdjust)); if (getTextBox()) + { getTextBox()->convert(xShape); + if (getTextBox()->borderDistanceSet) + { + PropertySet(xShape).setAnyProperty(PROP_TextLeftDistance, makeAny(sal_Int32(getTextBox()->borderDistanceLeft))); + PropertySet(xShape).setAnyProperty(PROP_TextUpperDistance, makeAny(sal_Int32(getTextBox()->borderDistanceTop))); + PropertySet(xShape).setAnyProperty(PROP_TextRightDistance, makeAny(sal_Int32(getTextBox()->borderDistanceRight))); + PropertySet(xShape).setAnyProperty(PROP_TextLowerDistance, makeAny(sal_Int32(getTextBox()->borderDistanceBottom))); + } + } } // Import Legacy Fragments (if any) -- cgit