diff options
author | Noel Grandin <noel@peralex.com> | 2016-07-12 08:21:27 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-07-15 14:05:41 +0000 |
commit | 6e72f0251bb8767942edf74f612547c12ca0cdf1 (patch) | |
tree | 0785de1a2f8995d1d4ede7889541bda9b59f893f /svtools | |
parent | 7da80de2c75e048a08ea6e923a9f433a638a9f12 (diff) |
new loplugin unnecessary override
Change-Id: I88d3e33823d68745b98625050a8a274f9ef04bcb
Reviewed-on: https://gerrit.libreoffice.org/27135
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/inc/vclxaccessibleheaderbar.hxx | 3 | ||||
-rw-r--r-- | svtools/source/brwbox/brwhead.cxx | 6 | ||||
-rw-r--r-- | svtools/source/brwbox/editbrowsebox.cxx | 6 | ||||
-rw-r--r-- | svtools/source/contnr/svtabbx.cxx | 5 | ||||
-rw-r--r-- | svtools/source/control/inettbc.cxx | 6 | ||||
-rw-r--r-- | svtools/source/control/tabbar.cxx | 6 | ||||
-rw-r--r-- | svtools/source/control/vclxaccessibleheaderbar.cxx | 12 | ||||
-rw-r--r-- | svtools/source/dialogs/wizardmachine.cxx | 5 | ||||
-rw-r--r-- | svtools/source/uno/popupwindowcontroller.cxx | 10 | ||||
-rw-r--r-- | svtools/source/uno/treecontrolpeer.cxx | 6 | ||||
-rw-r--r-- | svtools/source/uno/treecontrolpeer.hxx | 3 |
11 files changed, 0 insertions, 68 deletions
diff --git a/svtools/inc/vclxaccessibleheaderbar.hxx b/svtools/inc/vclxaccessibleheaderbar.hxx index 165793a615d4..bcf640d6c7e8 100644 --- a/svtools/inc/vclxaccessibleheaderbar.hxx +++ b/svtools/inc/vclxaccessibleheaderbar.hxx @@ -39,9 +39,6 @@ public: VclPtr<HeaderBar> m_pHeadBar; virtual ~VCLXAccessibleHeaderBar(); - virtual void ProcessWindowEvent( const VclWindowEvent& rVclWindowEvent ) override; - virtual void FillAccessibleStateSet( utl::AccessibleStateSetHelper& rStateSet ) override; - VCLXAccessibleHeaderBar( VCLXWindow* pVCLXindow ); // XAccessibleContext diff --git a/svtools/source/brwbox/brwhead.cxx b/svtools/source/brwbox/brwhead.cxx index 22691670b750..9db299802b1d 100644 --- a/svtools/source/brwbox/brwhead.cxx +++ b/svtools/source/brwbox/brwhead.cxx @@ -61,12 +61,6 @@ void BrowserHeader::Command( const CommandEvent& rCEvt ) } -void BrowserHeader::Select() -{ - HeaderBar::Select(); -} - - void BrowserHeader::EndDrag() { // call before other actions, it looks more nice in most cases diff --git a/svtools/source/brwbox/editbrowsebox.cxx b/svtools/source/brwbox/editbrowsebox.cxx index e27f192f657a..f56e06c527ba 100644 --- a/svtools/source/brwbox/editbrowsebox.cxx +++ b/svtools/source/brwbox/editbrowsebox.cxx @@ -396,12 +396,6 @@ namespace svt } - void EditBrowseBox::ImplTracking() - { - BrowseBox::ImplTracking(); - } - - void EditBrowseBox::ImplEndTracking() { if ( bActiveBeforeTracking ) diff --git a/svtools/source/contnr/svtabbx.cxx b/svtools/source/contnr/svtabbx.cxx index f0345af5143a..c334f5addfa3 100644 --- a/svtools/source/contnr/svtabbx.cxx +++ b/svtools/source/contnr/svtabbx.cxx @@ -377,11 +377,6 @@ sal_uLong SvTabListBox::GetEntryPos( const SvTreeListEntry* pEntry ) const return 0xffffffff; } -void SvTabListBox::Resize() -{ - SvTreeListBox::Resize(); -} - // static OUString SvTabListBox::GetToken( const OUString &sStr, sal_Int32& nIndex ) { diff --git a/svtools/source/control/inettbc.cxx b/svtools/source/control/inettbc.cxx index 542731b37d69..7fc2b0f1bc24 100644 --- a/svtools/source/control/inettbc.cxx +++ b/svtools/source/control/inettbc.cxx @@ -1061,12 +1061,6 @@ bool SvtURLBox::ProcessKey( const vcl::KeyCode& rKey ) } -void SvtURLBox::Modify() -{ - ComboBox::Modify(); -} - - bool SvtURLBox::PreNotify( NotifyEvent& rNEvt ) { if( rNEvt.GetWindow() == GetSubEdit() && rNEvt.GetType() == MouseNotifyEvent::KEYINPUT ) diff --git a/svtools/source/control/tabbar.cxx b/svtools/source/control/tabbar.cxx index 0662e0693d95..5d6c352137dd 100644 --- a/svtools/source/control/tabbar.cxx +++ b/svtools/source/control/tabbar.cxx @@ -318,7 +318,6 @@ public: private: void ImplTrack( const Point& rScreenPos ); - virtual void dispose() override; virtual void MouseButtonDown( const MouseEvent& rMEvt ) override; virtual void Tracking( const TrackingEvent& rTEvt ) override; virtual void Paint( vcl::RenderContext& /*rRenderContext*/, const Rectangle& rRect ) override; @@ -336,11 +335,6 @@ ImplTabSizer::ImplTabSizer( TabBar* pParent, WinBits nWinStyle ) SetSizePixel(Size(7 * nScaleFactor, 0)); } -void ImplTabSizer::dispose() -{ - vcl::Window::dispose(); -} - void ImplTabSizer::ImplTrack( const Point& rScreenPos ) { TabBar* pParent = GetParent(); diff --git a/svtools/source/control/vclxaccessibleheaderbar.cxx b/svtools/source/control/vclxaccessibleheaderbar.cxx index 7065e6dcf295..4185be0ab2f8 100644 --- a/svtools/source/control/vclxaccessibleheaderbar.cxx +++ b/svtools/source/control/vclxaccessibleheaderbar.cxx @@ -65,18 +65,6 @@ VCLXAccessibleHeaderBar::~VCLXAccessibleHeaderBar() } -void VCLXAccessibleHeaderBar::ProcessWindowEvent( const VclWindowEvent& rVclWindowEvent ) -{ - VCLXAccessibleComponent::ProcessWindowEvent( rVclWindowEvent ); -} - - -void VCLXAccessibleHeaderBar::FillAccessibleStateSet( utl::AccessibleStateSetHelper& rStateSet ) -{ - VCLXAccessibleComponent::FillAccessibleStateSet( rStateSet ); -} - - // XServiceInfo diff --git a/svtools/source/dialogs/wizardmachine.cxx b/svtools/source/dialogs/wizardmachine.cxx index b83ca08fb1d2..c7cab7046020 100644 --- a/svtools/source/dialogs/wizardmachine.cxx +++ b/svtools/source/dialogs/wizardmachine.cxx @@ -43,11 +43,6 @@ namespace svt disposeOnce(); } - void OWizardPage::dispose() - { - TabPage::dispose(); - } - void OWizardPage::initializePage() { } diff --git a/svtools/source/uno/popupwindowcontroller.cxx b/svtools/source/uno/popupwindowcontroller.cxx index b1a977b7c7b6..39e651c5ab5a 100644 --- a/svtools/source/uno/popupwindowcontroller.cxx +++ b/svtools/source/uno/popupwindowcontroller.cxx @@ -188,16 +188,6 @@ void SAL_CALL PopupWindowController::execute( sal_Int16 KeyModifier ) throw (Run svt::ToolboxController::execute( KeyModifier ); } -void SAL_CALL PopupWindowController::click() throw (RuntimeException, std::exception) -{ - svt::ToolboxController::click(); -} - -void SAL_CALL PopupWindowController::doubleClick() throw (RuntimeException, std::exception) -{ - svt::ToolboxController::doubleClick(); -} - Reference< awt::XWindow > SAL_CALL PopupWindowController::createPopupWindow() throw (RuntimeException, std::exception) { VclPtr< ToolBox > pToolBox = dynamic_cast< ToolBox* >( VCLUnoHelper::GetWindow( getParent() ).get() ); diff --git a/svtools/source/uno/treecontrolpeer.cxx b/svtools/source/uno/treecontrolpeer.cxx index b6b5fa5c1ea6..3c6f3ca77a26 100644 --- a/svtools/source/uno/treecontrolpeer.cxx +++ b/svtools/source/uno/treecontrolpeer.cxx @@ -212,12 +212,6 @@ void TreeControlPeer::disposeControl() } -void TreeControlPeer::SetWindow( const VclPtr< vcl::Window > &pWindow ) -{ - VCLXWindow::SetWindow( pWindow ); -} - - UnoTreeListEntry* TreeControlPeer::createEntry( const Reference< XTreeNode >& xNode, UnoTreeListEntry* pParent, sal_uLong nPos /* = TREELIST_APPEND */ ) { UnoTreeListEntry* pEntry = nullptr; diff --git a/svtools/source/uno/treecontrolpeer.hxx b/svtools/source/uno/treecontrolpeer.hxx index c1d8f9ba787e..545b81398741 100644 --- a/svtools/source/uno/treecontrolpeer.hxx +++ b/svtools/source/uno/treecontrolpeer.hxx @@ -57,9 +57,6 @@ public: vcl::Window* createVclControl( vcl::Window* pParent, sal_Int64 nWinStyle ); - // VCLXWindow - virtual void SetWindow( const VclPtr< vcl::Window > &pWindow ) override; - // css::view::XSelectionSupplier virtual sal_Bool SAL_CALL select( const css::uno::Any& xSelection ) throw (css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception) override; virtual css::uno::Any SAL_CALL getSelection( ) throw (css::uno::RuntimeException, std::exception) override; |