Kaydet (Commit) 591e23d0 authored tarafından Miklos Vajna's avatar Miklos Vajna

writerfilter: try to make clang tinderbox happy

Change-Id: If24e8e3e48f8d043fdb48a0637e874743f9247f0
üst 347330f4
...@@ -31,6 +31,7 @@ ...@@ -31,6 +31,7 @@
#include <com/sun/star/drawing/EnhancedCustomShapeSegment.hpp> #include <com/sun/star/drawing/EnhancedCustomShapeSegment.hpp>
#include <com/sun/star/drawing/EnhancedCustomShapeParameterPair.hpp> #include <com/sun/star/drawing/EnhancedCustomShapeParameterPair.hpp>
#include <com/sun/star/drawing/EnhancedCustomShapeSegmentCommand.hpp> #include <com/sun/star/drawing/EnhancedCustomShapeSegmentCommand.hpp>
#include <com/sun/star/text/WrapTextMode.hpp>
#include <com/sun/star/text/WritingMode.hpp> #include <com/sun/star/text/WritingMode.hpp>
#include <ooxml/resourceids.hxx> // NS_ooxml namespace #include <ooxml/resourceids.hxx> // NS_ooxml namespace
...@@ -347,7 +348,7 @@ void RTFSdrImport::resolve(RTFShape& rShape) ...@@ -347,7 +348,7 @@ void RTFSdrImport::resolve(RTFShape& rShape)
if (rShape.nVertOrientRelation != 0) if (rShape.nVertOrientRelation != 0)
xPropertySet->setPropertyValue("VertOrientRelation", uno::makeAny(rShape.nVertOrientRelation)); xPropertySet->setPropertyValue("VertOrientRelation", uno::makeAny(rShape.nVertOrientRelation));
if (rShape.nWrap != -1) if (rShape.nWrap != -1)
xPropertySet->setPropertyValue("Surround", uno::makeAny(rShape.nWrap)); xPropertySet->setPropertyValue("Surround", uno::makeAny(text::WrapTextMode(rShape.nWrap)));
} }
// Send it to dmapper // Send it to dmapper
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment