diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-10-09 23:15:09 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-10-10 00:05:53 +0200 |
commit | c63ec2a923b8e06df01593677ca90a271084ca04 (patch) | |
tree | 05db5cd7ddca0112d39b0d379b835abe7271c0fa /lingucomponent/source/spellcheck/macosxspell/macspellimp.mm | |
parent | ae7b26246ec03dbff3d43a0dc04fd9ffd2cd0809 (diff) |
loplugin:redundantpointerops (macOS)
Change-Id: I40d51fbdd712d1e6e64cede05338c07a06261d8a
Reviewed-on: https://gerrit.libreoffice.org/80568
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'lingucomponent/source/spellcheck/macosxspell/macspellimp.mm')
-rw-r--r-- | lingucomponent/source/spellcheck/macosxspell/macspellimp.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm b/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm index 31af179f4eaf..ef3d5decb013 100644 --- a/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm +++ b/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm @@ -87,7 +87,7 @@ PropertyHelper_Spell & MacSpellChecker::GetPropHelper_Impl() xPropHelper = new PropertyHelper_Spell( static_cast<XSpellChecker *>(this), xPropSet ); xPropHelper->AddAsPropListener(); } - return *xPropHelper.get(); + return *xPropHelper; } |