diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-08 09:57:25 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-08-08 13:06:58 +0000 |
commit | 602647c2417e0e19e44f9c35a49fbb88ff8ac261 (patch) | |
tree | fb56a519ec12c3884a70862272c554c89d3b4b75 /svtools | |
parent | 8f25e553b91f5ed3544c580a450658cc76ffed56 (diff) |
loplugin:unnecessaryvirtual
Change-Id: If25d9307efda5f57b0f80a0cf5c2c5cab6a752d6
Reviewed-on: https://gerrit.libreoffice.org/27981
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/brwbox/brwbox2.cxx | 5 | ||||
-rw-r--r-- | svtools/source/brwbox/datwin.cxx | 2 | ||||
-rw-r--r-- | svtools/source/inc/svimpbox.hxx | 2 |
3 files changed, 1 insertions, 8 deletions
diff --git a/svtools/source/brwbox/brwbox2.cxx b/svtools/source/brwbox/brwbox2.cxx index 45fa1c448e79..5245edcb1cd1 100644 --- a/svtools/source/brwbox/brwbox2.cxx +++ b/svtools/source/brwbox/brwbox2.cxx @@ -191,11 +191,6 @@ void BrowseBox::ImplStartTracking() } -void BrowseBox::ImplTracking() -{ -} - - void BrowseBox::ImplEndTracking() { } diff --git a/svtools/source/brwbox/datwin.cxx b/svtools/source/brwbox/datwin.cxx index 392140b2833f..ceb5c3acf2f4 100644 --- a/svtools/source/brwbox/datwin.cxx +++ b/svtools/source/brwbox/datwin.cxx @@ -559,8 +559,6 @@ void BrowserDataWin::Tracking( const TrackingEvent& rTEvt ) } else { - GetParent()->ImplTracking(); - long nDragRowDividerCurrentPos = aMousePos.Y() + m_nDragRowDividerOffset; // care for minimum row height diff --git a/svtools/source/inc/svimpbox.hxx b/svtools/source/inc/svimpbox.hxx index 5c1814276572..7ba18dadf17f 100644 --- a/svtools/source/inc/svimpbox.hxx +++ b/svtools/source/inc/svimpbox.hxx @@ -276,7 +276,7 @@ public: virtual void UpdateAll( bool bInvalidateCompleteView ); void SetEntryHeight( short nHeight ); void InvalidateEntry( SvTreeListEntry* ); - virtual void RecalcFocusRect(); + void RecalcFocusRect(); void SelectEntry( SvTreeListEntry* pEntry, bool bSelect ); void SetDragDropMode( DragDropMode eDDMode ); |