diff options
Diffstat (limited to 'src/utils/translation')
-rw-r--r-- | src/utils/translation/podict.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/translation/podict.h b/src/utils/translation/podict.h index 36cf0d4af..45150d408 100644 --- a/src/utils/translation/podict.h +++ b/src/utils/translation/podict.h @@ -47,10 +47,10 @@ class PoDict final PoMap *getMap() { return &mPoLines; } - void set(std::string key, std::string value) + void set(const std::string &key, const std::string &value) { mPoLines[key] = value; } - void setLang(std::string lang) + void setLang(const std::string &lang) { mLang = lang; } private: |