summaryrefslogtreecommitdiffstats
path: root/writerfilter/source/rtftok/rtfdispatchflag.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'writerfilter/source/rtftok/rtfdispatchflag.cxx')
-rw-r--r--writerfilter/source/rtftok/rtfdispatchflag.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/writerfilter/source/rtftok/rtfdispatchflag.cxx b/writerfilter/source/rtftok/rtfdispatchflag.cxx
index 7265d7c424a9..8797a08442d8 100644
--- a/writerfilter/source/rtftok/rtfdispatchflag.cxx
+++ b/writerfilter/source/rtftok/rtfdispatchflag.cxx
@@ -1044,8 +1044,8 @@ RTFError RTFDocumentImpl::dispatchFlag(RTFKeyword nKeyword)
{
beans::PropertyValue aPropertyValue;
aPropertyValue.Name
- = (nKeyword == RTF_DOBXMARGIN ? OUStringLiteral("HoriOrientRelation")
- : OUStringLiteral("VertOrientRelation"));
+ = (nKeyword == RTF_DOBXMARGIN ? OUStringLiteral(u"HoriOrientRelation")
+ : OUStringLiteral(u"VertOrientRelation"));
aPropertyValue.Value <<= text::RelOrientation::PAGE_PRINT_AREA;
m_aStates.top().getDrawingObject().getPendingProperties().push_back(aPropertyValue);
}
@@ -1055,8 +1055,8 @@ RTFError RTFDocumentImpl::dispatchFlag(RTFKeyword nKeyword)
{
beans::PropertyValue aPropertyValue;
aPropertyValue.Name
- = (nKeyword == RTF_DOBXPAGE ? OUStringLiteral("HoriOrientRelation")
- : OUStringLiteral("VertOrientRelation"));
+ = (nKeyword == RTF_DOBXPAGE ? OUStringLiteral(u"HoriOrientRelation")
+ : OUStringLiteral(u"VertOrientRelation"));
aPropertyValue.Value <<= text::RelOrientation::PAGE_FRAME;
m_aStates.top().getDrawingObject().getPendingProperties().push_back(aPropertyValue);
}