diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-13 08:38:29 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-13 08:39:26 +0200 |
commit | 78a2020846b855ed925ab88f06fa70a282a75e5a (patch) | |
tree | dd316d41417704fc02387700f2b664b55945773b /vcl/qa | |
parent | 39c7532933bb4f1630e821a2a38b213eb05dcc59 (diff) |
vcl: prefer passing OUString and OString by reference
Change-Id: I6c2c6f597ca62c004ad7dc606cef3a3b10e810b6
Diffstat (limited to 'vcl/qa')
-rw-r--r-- | vcl/qa/cppunit/graphicfilter/filters-test.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/qa/cppunit/graphicfilter/filters-test.cxx b/vcl/qa/cppunit/graphicfilter/filters-test.cxx index 811c2a16cbea..f7faae4c056c 100644 --- a/vcl/qa/cppunit/graphicfilter/filters-test.cxx +++ b/vcl/qa/cppunit/graphicfilter/filters-test.cxx @@ -34,7 +34,7 @@ public: const OUString &rURL, const OUString &, unsigned int, unsigned int, unsigned int); - void checkExportImport(OUString aFilterShortName); + void checkExportImport(const OUString& aFilterShortName); /** * Ensure CVEs remain unbroken @@ -77,7 +77,7 @@ void VclFiltersTest::testScaling() } } -void VclFiltersTest::checkExportImport(OUString aFilterShortName) +void VclFiltersTest::checkExportImport(const OUString& aFilterShortName) { Bitmap aBitmap( Size( 100, 100 ), 24 ); aBitmap.Erase(COL_WHITE); |