summaryrefslogtreecommitdiff
path: root/svgio
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-06-26 13:54:11 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-06-26 13:55:34 +0200
commitc92853c93e537b75444ea2852777d73390de1b1a (patch)
treee469a0baea5fff8ba888603b135c68f190fda8fb /svgio
parenta023842a74e2611e70db076457688539c65e6ab1 (diff)
loplugin:stringconstant: handle OUString+=OUString(literal)
Change-Id: I367a880669138406e715e8574543b1d54754b0ba
Diffstat (limited to 'svgio')
-rw-r--r--svgio/source/svgreader/svgcharacternode.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svgio/source/svgreader/svgcharacternode.cxx b/svgio/source/svgreader/svgcharacternode.cxx
index 5fe2ef3d7b9c..9dcaba7504c2 100644
--- a/svgio/source/svgreader/svgcharacternode.cxx
+++ b/svgio/source/svgreader/svgcharacternode.cxx
@@ -558,7 +558,7 @@ namespace svgio
void SvgCharacterNode::addGap()
{
- maText += OUString(' ');
+ maText += " ";
}
void SvgCharacterNode::concatenate(const OUString& rText)