From 299433d148850d7b3561fe3fcd78968a52749f09 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Wed, 17 Oct 2012 13:08:10 +0200 Subject: import RTF_DOBYPARA Change-Id: Ifcfc6e1aca86960f72bcf2a8c7865b192ca1a491 --- writerfilter/source/rtftok/rtfdocumentimpl.cxx | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'writerfilter/source/rtftok') diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx b/writerfilter/source/rtftok/rtfdocumentimpl.cxx index 5ae93e1dd3f2..192cb3b2e988 100644 --- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx +++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx @@ -2330,6 +2330,14 @@ int RTFDocumentImpl::dispatchFlag(RTFKeyword nKeyword) m_aStates.top().aDrawingObject.aPendingProperties.push_back(aPropertyValue); } break; + case RTF_DOBYPARA: + { + beans::PropertyValue aPropertyValue; + aPropertyValue.Name = OUString("HoriOrientRelation"); + aPropertyValue.Value <<= text::RelOrientation::FRAME; + m_aStates.top().aDrawingObject.aPendingProperties.push_back(aPropertyValue); + } + break; case RTF_CONTEXTUALSPACE: { RTFValue::Pointer_t pValue(new RTFValue(1)); -- cgit