diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-07 16:01:05 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-10 11:26:20 +0200 |
commit | dd700ceda73191729e00448b09320d118f5abbb8 (patch) | |
tree | e20c6aa8b9748084d4b4273a918999a2a7caee22 /include/editeng | |
parent | 40d26609efdcc7f5aaf708baccb1355e11ccf379 (diff) |
loplugin:inlinefields in SvxAutoCorrect
Change-Id: I09aa52551dd1ed96bc9a72baec6afe5a4a05c1dd
Reviewed-on: https://gerrit.libreoffice.org/36346
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/editeng')
-rw-r--r-- | include/editeng/svxacorr.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/editeng/svxacorr.hxx b/include/editeng/svxacorr.hxx index 17957ff561d0..0f1a7cb0ad78 100644 --- a/include/editeng/svxacorr.hxx +++ b/include/editeng/svxacorr.hxx @@ -232,9 +232,9 @@ class EDITENG_DLLPUBLIC SvxAutoCorrect SvxSwAutoFormatFlags aSwFlags; // StarWriter AutoFormat Flags // all languages in a table - std::map<LanguageTag, std::unique_ptr<SvxAutoCorrectLanguageLists>>* m_pLangTable; + std::map<LanguageTag, std::unique_ptr<SvxAutoCorrectLanguageLists>> m_aLangTable; std::map<LanguageTag, long> aLastFileTable; - CharClass* pCharClass; + std::unique_ptr<CharClass> pCharClass; bool bRunNext; |