summaryrefslogtreecommitdiff
path: root/sd/source/ui/animations
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-06-26 13:54:00 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-06-26 13:55:34 +0200
commit85c6b88e74b4a6f058cc55c2ed2772699211ce66 (patch)
treee4957456d012828bc6b7e483ba6e781db37d4542 /sd/source/ui/animations
parentcf029c125d188c22b87590f1d58d3866f9ea796a (diff)
loplugin:stringconstant: handle OUString+=OUString(literal)
Change-Id: I0d1d7f598a0c61d36d72f9d51cccdcd1071c30b6
Diffstat (limited to 'sd/source/ui/animations')
-rw-r--r--sd/source/ui/animations/CustomAnimationPane.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sd/source/ui/animations/CustomAnimationPane.cxx b/sd/source/ui/animations/CustomAnimationPane.cxx
index 0ff1b9705503..f6446ae0d1b4 100644
--- a/sd/source/ui/animations/CustomAnimationPane.cxx
+++ b/sd/source/ui/animations/CustomAnimationPane.cxx
@@ -520,8 +520,7 @@ void CustomAnimationPane::updateControls()
if( !aUIName.isEmpty() )
{
- aTemp += OUString( (sal_Unicode)' ' );
- aTemp += aUIName;
+ aTemp += " " + aUIName;
mpFTEffect->SetText( aTemp );
}