diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-27 08:49:39 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-27 09:13:25 +0100 |
commit | 48dc1e48d0fed5e00a3e4b5edf11a90fcc55b5ed (patch) | |
tree | d241315a5658db39879b6c58ca651a0e4469990a /svx | |
parent | 4ca1789e5735e2f2926822562c19e1989c8f5ce2 (diff) |
loplugin:unnecessaryoverride look for more patterns
like
bool Foo::bar() {
b = Super::bar();
return b;
}
Change-Id: I5e4c8005a3da7d7487c9039c35dcbb1d17e65bd7
Reviewed-on: https://gerrit.libreoffice.org/68418
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/inc/uiobject.hxx | 2 | ||||
-rw-r--r-- | svx/source/uitest/uiobject.cxx | 7 |
2 files changed, 0 insertions, 9 deletions
diff --git a/svx/inc/uiobject.hxx b/svx/inc/uiobject.hxx index 1cf2a33ef449..6805e35646f6 100644 --- a/svx/inc/uiobject.hxx +++ b/svx/inc/uiobject.hxx @@ -22,8 +22,6 @@ class SvxShowCharSetUIObject : public WindowUIObject public: SvxShowCharSetUIObject(const VclPtr<vcl::Window>& xCharSetWin, SvxShowCharSet* pCharSet); - virtual StringMap get_state() override; - virtual void execute(const OUString& rAction, const StringMap& rParameters) override; diff --git a/svx/source/uitest/uiobject.cxx b/svx/source/uitest/uiobject.cxx index b393ea83be82..9568f4cc75ef 100644 --- a/svx/source/uitest/uiobject.cxx +++ b/svx/source/uitest/uiobject.cxx @@ -18,13 +18,6 @@ SvxShowCharSetUIObject::SvxShowCharSetUIObject(const VclPtr<vcl::Window>& xCharS { } -StringMap SvxShowCharSetUIObject::get_state() -{ - StringMap aMap = WindowUIObject::get_state(); - - return aMap; -} - void SvxShowCharSetUIObject::execute(const OUString& rAction, const StringMap& rParameters) { |