summaryrefslogtreecommitdiff
path: root/tools/qa
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-08-27 08:01:52 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-08-27 08:01:52 +0200
commitcce0620a0669de4c55eb8e02fe16ce139a692228 (patch)
tree334b4b28aab83e1bd2e785af3dbc41d48f1f710d /tools/qa
parent3e1020136c6dab023c54e5f8c67795787d63d99a (diff)
loplugin:passstuffbyref
Change-Id: I0244f12f1ee2e61ac577222a14b011aee5ddbd54
Diffstat (limited to 'tools/qa')
-rw-r--r--tools/qa/cppunit/test_color.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qa/cppunit/test_color.cxx b/tools/qa/cppunit/test_color.cxx
index aeab12a1adb1..8639ebe9fb62 100644
--- a/tools/qa/cppunit/test_color.cxx
+++ b/tools/qa/cppunit/test_color.cxx
@@ -78,7 +78,7 @@ void Test::test_readAndWriteStream()
}
}
-bool checkTintShade(sal_uInt8 nR, sal_uInt8 nG, sal_uInt8 nB, OUString sReference, sal_Int16 nTintShade, OUString sExpected)
+bool checkTintShade(sal_uInt8 nR, sal_uInt8 nG, sal_uInt8 nB, OUString const & sReference, sal_Int16 nTintShade, OUString const & sExpected)
{
Color aColor(nR, nG, nB);
if (sReference != aColor.AsRGBHexString())