diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-08-27 08:01:52 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-08-27 08:01:52 +0200 |
commit | cce0620a0669de4c55eb8e02fe16ce139a692228 (patch) | |
tree | 334b4b28aab83e1bd2e785af3dbc41d48f1f710d | |
parent | 3e1020136c6dab023c54e5f8c67795787d63d99a (diff) |
loplugin:passstuffbyref
Change-Id: I0244f12f1ee2e61ac577222a14b011aee5ddbd54
-rw-r--r-- | tools/qa/cppunit/test_color.cxx | 2 |
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()) |