diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-07 15:45:13 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-08 08:26:23 +0200 |
commit | 231e16d9091c2d318d99c2f2eb985311e7138127 (patch) | |
tree | 7b8d30778cdb696cdf4c0ec80a58f6b488e4d5e5 /include | |
parent | e47172ce2ac486b909ee8f46380dca8efedb6a24 (diff) |
loplugin:redundantpointerops simplify *p.get()
Change-Id: I12517651fb3f777fd08e384992bb3e84b340ad85
Reviewed-on: https://gerrit.libreoffice.org/80382
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/svl/ondemand.hxx | 2 | ||||
-rw-r--r-- | include/svx/ClassificationEditView.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/svl/ondemand.hxx b/include/svl/ondemand.hxx index fd0032c32c29..5ce944a96986 100644 --- a/include/svl/ondemand.hxx +++ b/include/svl/ondemand.hxx @@ -115,7 +115,7 @@ public: const LocaleDataWrapper* get() const { return pCurrent; } const LocaleDataWrapper* operator->() const { return get(); } - const LocaleDataWrapper& operator*() const { return *get(); } + const LocaleDataWrapper& operator*() const { return *pCurrent; } }; /** Load a calendar only if it's needed. Keep calendar for "en-US" locale diff --git a/include/svx/ClassificationEditView.hxx b/include/svx/ClassificationEditView.hxx index 5f9fef03a0ec..1123c0fae21a 100644 --- a/include/svx/ClassificationEditView.hxx +++ b/include/svx/ClassificationEditView.hxx @@ -50,7 +50,7 @@ public: EditView& getEditView() { - return *m_xEditView.get(); + return *m_xEditView; } }; |