diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-03-04 09:28:31 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-03-04 13:07:40 +0000 |
commit | 32f95a35514701ed16413125b440c16d90f52b4a (patch) | |
tree | 25ac5edca15ee02bc937ee47116c2197559da4cd /test | |
parent | 0f98299f7aa44bbb55c1bfeddca7799f727d14b0 (diff) |
V813: Decreased performance
Change-Id: I8a7528366156b288dc422b09cff0d5a32cde3c91
Diffstat (limited to 'test')
-rw-r--r-- | test/source/primitive2dxmldump.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/source/primitive2dxmldump.cxx b/test/source/primitive2dxmldump.cxx index 0af7c7c14c23..e1be527f96a5 100644 --- a/test/source/primitive2dxmldump.cxx +++ b/test/source/primitive2dxmldump.cxx @@ -34,9 +34,9 @@ namespace const size_t constMaxActionType = 513; -OUString convertColorToString(basegfx::BColor aColor) +OUString convertColorToString(const basegfx::BColor& rColor) { - OUString aRGBString = Color(aColor).AsRGBHexString(); + OUString aRGBString = Color(rColor).AsRGBHexString(); return "#" + aRGBString; } |