summaryrefslogtreecommitdiff
path: root/editeng/source/items
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-08-30 15:27:48 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-08-30 15:27:48 +0200
commit0c9a71a7b2fd0a004e980724460a3763b76eb772 (patch)
tree394278fbf5e430f7feb6c0f70e0a4fc1e004443e /editeng/source/items
parent56f21320f3214be0b361c09e08cf100a647d908a (diff)
loplugin:stringconstant: adapt to improved OUStringLiteral1 (editeng)
Change-Id: If8d2eb5e02a107cc1805e349a70df54160fed02a
Diffstat (limited to 'editeng/source/items')
-rw-r--r--editeng/source/items/textitem.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/editeng/source/items/textitem.cxx b/editeng/source/items/textitem.cxx
index 64efe964b4e7..ae857c8706db 100644
--- a/editeng/source/items/textitem.cxx
+++ b/editeng/source/items/textitem.cxx
@@ -2839,9 +2839,9 @@ bool SvxTwoLinesItem::GetPresentation( SfxItemPresentation /*ePres*/,
{
rText = EE_RESSTR( RID_SVXITEMS_TWOLINES );
if( GetStartBracket() )
- rText = OUString(GetStartBracket()) + rText;
+ rText = OUStringLiteral1(GetStartBracket()) + rText;
if( GetEndBracket() )
- rText += OUString(GetEndBracket());
+ rText += OUStringLiteral1(GetEndBracket());
}
return true;
}