summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@suse.cz>2012-10-18 15:54:50 +0200
committerMiklos Vajna <vmiklos@suse.cz>2012-10-18 15:55:08 +0200
commit175e516562a8bb222b2bb752be925e4fa4d486d6 (patch)
treed9b2ff007b0cbe5a6ec76a54cccb5ea8078d7cde /writerfilter
parent75b8d8f597d360e8d789358ca99e78e4742749c5 (diff)
RTF_DOBYPARA import: Y is vertical
Change-Id: I46bf69bfce26375a2fb23ef4b00404beb8d8c135
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/rtftok/rtfdocumentimpl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
index d5fd0848a03b..19d146571a6c 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
@@ -2334,7 +2334,7 @@ int RTFDocumentImpl::dispatchFlag(RTFKeyword nKeyword)
case RTF_DOBYPARA:
{
beans::PropertyValue aPropertyValue;
- aPropertyValue.Name = OUString("HoriOrientRelation");
+ aPropertyValue.Name = OUString("VertOrientRelation");
aPropertyValue.Value <<= text::RelOrientation::FRAME;
m_aStates.top().aDrawingObject.aPendingProperties.push_back(aPropertyValue);
}