diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-05-18 15:00:35 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-05-18 20:56:00 +0200 |
commit | 825aeb04e6c45d0ba8ef1bd08e7ade297e9f5361 (patch) | |
tree | 94296a5a82547315092d928ea2540966eaa34f8a /linguistic/source/dicimp.hxx | |
parent | 6b12ba07be44099725b722c8d86227d7ec79885f (diff) |
clang-tidy modernize-pass-by-value in linguistic
Change-Id: Ia5fc81ed6e6e060d62e5ff42dccb06e36774a65c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134534
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'linguistic/source/dicimp.hxx')
-rw-r--r-- | linguistic/source/dicimp.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linguistic/source/dicimp.hxx b/linguistic/source/dicimp.hxx index cec1e1866ed3..c94094de6571 100644 --- a/linguistic/source/dicimp.hxx +++ b/linguistic/source/dicimp.hxx @@ -74,7 +74,7 @@ class DictionaryNeo : bool bIsLoadEntries = false); public: - DictionaryNeo(const OUString &rName, LanguageType nLang, + DictionaryNeo(OUString aName, LanguageType nLang, css::linguistic2::DictionaryType eType, const OUString &rMainURL, bool bWriteable ); @@ -155,8 +155,8 @@ class DicEntry : public: DicEntry(const OUString &rDicFileWord, bool bIsNegativ); - DicEntry(const OUString &rDicWord, bool bIsNegativ, - const OUString &rRplcText); + DicEntry(OUString aDicWord, bool bIsNegativ, + OUString aRplcText); virtual ~DicEntry() override; // XDictionaryEntry |