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 /include/toolkit | |
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 'include/toolkit')
-rw-r--r-- | include/toolkit/awt/vclxtabpagecontainer.hxx | 3 | ||||
-rw-r--r-- | include/toolkit/awt/vclxwindows.hxx | 9 |
2 files changed, 0 insertions, 12 deletions
diff --git a/include/toolkit/awt/vclxtabpagecontainer.hxx b/include/toolkit/awt/vclxtabpagecontainer.hxx index 732c386e0ea1..be3a8b9674c1 100644 --- a/include/toolkit/awt/vclxtabpagecontainer.hxx +++ b/include/toolkit/awt/vclxtabpagecontainer.hxx @@ -40,9 +40,6 @@ public: // css::awt::XView void SAL_CALL draw( sal_Int32 nX, sal_Int32 nY ) override; - // css::awt::XDevice, - css::awt::DeviceInfo SAL_CALL getInfo() override; - // css::awt::grid::XTabPageContainer virtual ::sal_Int16 SAL_CALL getActiveTabPageID() override; virtual void SAL_CALL setActiveTabPageID( ::sal_Int16 _activetabpageid ) override; diff --git a/include/toolkit/awt/vclxwindows.hxx b/include/toolkit/awt/vclxwindows.hxx index 6982c6dbee3d..6c6288975fb8 100644 --- a/include/toolkit/awt/vclxwindows.hxx +++ b/include/toolkit/awt/vclxwindows.hxx @@ -344,9 +344,6 @@ public: // css::awt::XView void SAL_CALL draw( sal_Int32 nX, sal_Int32 nY ) override; - // css::awt::XDevice, - css::awt::DeviceInfo SAL_CALL getInfo() override; - // css::awt::XVclWindowPeer void SAL_CALL setProperty( const OUString& PropertyName, const css::uno::Any& Value ) override; @@ -416,9 +413,6 @@ public: // css::awt::XView void SAL_CALL draw( sal_Int32 nX, sal_Int32 nY ) override; - // css::awt::XDevice, - css::awt::DeviceInfo SAL_CALL getInfo() override; - // css::awt::XVclWindowPeer void SAL_CALL setProperty( const OUString& PropertyName, const css::uno::Any& Value ) override; @@ -453,9 +447,6 @@ public: // css::awt::XView void SAL_CALL draw( sal_Int32 nX, sal_Int32 nY ) override; - // css::awt::XDevice, - css::awt::DeviceInfo SAL_CALL getInfo() override; - // css::awt::XVclWindowPeer void SAL_CALL setProperty( const OUString& PropertyName, const css::uno::Any& Value ) override; css::uno::Any SAL_CALL getProperty( const OUString& PropertyName ) override; |