summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-06-18 16:03:04 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-06-18 17:02:45 +0200
commitab74c7d4eae55d7301b0eabad8ec7f253028bc62 (patch)
treef8700184c0bdd221d065cf9b78118e6b13bc353c /sd
parent53bdc87a596676d3c4a787615f30466e4efc3f7c (diff)
uitest: loplugin:stringconstant
Change-Id: I863615af7a942b91513511ba515b82f3523c6aa5
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/uitest/uiobject.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/uitest/uiobject.cxx b/sd/source/ui/uitest/uiobject.cxx
index a8c022705bb9..03b1538f45fb 100644
--- a/sd/source/ui/uitest/uiobject.cxx
+++ b/sd/source/ui/uitest/uiobject.cxx
@@ -76,7 +76,7 @@ namespace {
OUString getObjectName(SdrObject* pObject)
{
if (pObject->GetName().isEmpty())
- return OUString("Unnamed Drawinglayer object ") + OUString::number(pObject->GetOrdNum());
+ return "Unnamed Drawinglayer object " + OUString::number(pObject->GetOrdNum());
else
return pObject->GetName();
}