diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-04-03 20:55:04 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-04-03 20:55:04 +0200 |
commit | b326270fb921b3c2e7fff2da76ebae33adcaef3d (patch) | |
tree | 184312c77cc7cbb5127f046a6c82c7282715b262 /sc | |
parent | 0df12e2f1356172af5cde66a8fd36a10b430c9e5 (diff) |
sc: no need to pass these by value
Change-Id: Iab334625fbbe2a8d991a17b05538897a23fc34db
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/condformat/colorformat.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/condformat/colorformat.cxx b/sc/source/ui/condformat/colorformat.cxx index dc044be47ac7..0376889f7aa0 100644 --- a/sc/source/ui/condformat/colorformat.cxx +++ b/sc/source/ui/condformat/colorformat.cxx @@ -185,7 +185,7 @@ void GetAxesPosition(ScDataBarFormatData* pData, const ListBox* rLbox) } } -void SetBarLength(ScDataBarFormatData* pData, OUString minStr, OUString maxStr, SvNumberFormatter* mpNumberFormatter) +void SetBarLength(ScDataBarFormatData* pData, const OUString& minStr, const OUString& maxStr, SvNumberFormatter* mpNumberFormatter) { double nMinValue = 0; sal_uInt32 nIndex = 0; |