diff options
author | Noel Grandin <noel@peralex.com> | 2016-04-13 15:33:00 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-04-14 09:21:40 +0200 |
commit | 89fa923a28fb351bb4faad1f69ca94d17f8a5b06 (patch) | |
tree | 55472b67e354712f0f8f6fd0b54a248a0f71018d /sw/inc/authfld.hxx | |
parent | d1f6f79d0df21c2bb3be9d191233eabf22afb14e (diff) |
loplugin:passstuffbyref in sw
Change-Id: I124bdd4f28c7d7508e77b902dfa23c398454bf38
Diffstat (limited to 'sw/inc/authfld.hxx')
-rw-r--r-- | sw/inc/authfld.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/authfld.hxx b/sw/inc/authfld.hxx index 7228b63b27dc..219335120d9b 100644 --- a/sw/inc/authfld.hxx +++ b/sw/inc/authfld.hxx @@ -138,7 +138,7 @@ public: LanguageType GetLanguage() const {return m_eLanguage;} void SetLanguage(LanguageType nLang) {m_eLanguage = nLang;} - OUString GetSortAlgorithm() const {return m_sSortAlgorithm;} + const OUString& GetSortAlgorithm() const {return m_sSortAlgorithm;} void SetSortAlgorithm(const OUString& rSet) {m_sSortAlgorithm = rSet;} }; |