diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-01 11:40:50 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-08 08:03:03 +0200 |
commit | 1a6397030381a45f27ab7a2a02e6e6d0f9987c84 (patch) | |
tree | 6e342854037b3b845215af09f36407495550254d /svx/source/unodialogs/textconversiondlgs | |
parent | 781544497a0913037bba160a4cf6b643e5ca1d1a (diff) |
loplugin:constfields in svx
Change-Id: I643e8686e015ca85dd96221f1c93038f4fddf27b
Reviewed-on: https://gerrit.libreoffice.org/61182
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/unodialogs/textconversiondlgs')
-rw-r--r-- | svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx b/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx index 6b4a9e864d53..8904626fc024 100644 --- a/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx +++ b/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx @@ -44,11 +44,11 @@ struct DictionaryEntry final ~DictionaryEntry(); - OUString m_aTerm; - OUString m_aMapping; + OUString const m_aTerm; + OUString const m_aMapping; sal_Int16 m_nConversionPropertyType; //linguistic2::ConversionPropertyType - bool m_bNewEntry; + bool const m_bNewEntry; }; class DictionaryList : public SvSimpleTable |