diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-31 21:34:58 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-01 19:05:18 +0100 |
commit | 4b27e96cb05ba9fa4d89d8727466db3eb7ef15a6 (patch) | |
tree | e6040e9897e4348fb1c6a901e2aef2082e39548d /sc/inc/conditio.hxx | |
parent | 5670a9619b77a6a9e53b0cf20c059ea66ca5f450 (diff) |
loplugin:passstuffbyref improved return in sc
Change-Id: I487cfe96e9fe65f9be39b2488880410bc7b4baea
Reviewed-on: https://gerrit.libreoffice.org/47228
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc/conditio.hxx')
-rw-r--r-- | sc/inc/conditio.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/conditio.hxx b/sc/inc/conditio.hxx index 327b8367dce9..a27eeafc9ab8 100644 --- a/sc/inc/conditio.hxx +++ b/sc/inc/conditio.hxx @@ -361,7 +361,7 @@ public: void SetOperation(ScConditionMode eMode); bool IsIgnoreBlank() const { return ( nOptions & SC_COND_NOBLANKS ) == 0; } void SetIgnoreBlank(bool bSet); - OUString GetSrcString() const { return aSrcString; } + const OUString& GetSrcString() const { return aSrcString; } const ScAddress& GetSrcPos() const { return aSrcPos; } ScAddress GetValidSrcPos() const; // adjusted to allow textual representation of expressions |