diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-06 20:18:33 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-06 20:03:32 +0100 |
commit | d81f90dda7100f48995a432b999c1ba76a51846a (patch) | |
tree | ad977dfb775724995bc1b7f8920a080a2958b18f /fpicker | |
parent | c13ea2bd388ac41784db09fc5fcb51ac81900d20 (diff) |
loplugin:unnecessaryvirtual
Change-Id: Ibffbd0f5d30ec14cace3638b2bb47c91a583711c
Reviewed-on: https://gerrit.libreoffice.org/82171
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/fileview.cxx | 5 | ||||
-rw-r--r-- | fpicker/source/office/fileview.hxx | 2 |
2 files changed, 1 insertions, 6 deletions
diff --git a/fpicker/source/office/fileview.cxx b/fpicker/source/office/fileview.cxx index 671e75a6e2d1..ce6564402a46 100644 --- a/fpicker/source/office/fileview.cxx +++ b/fpicker/source/office/fileview.cxx @@ -136,7 +136,6 @@ private: public: ViewTabListBox_Impl(std::unique_ptr<weld::TreeView> xTreeView, weld::Window* pTopLevel, SvtFileView_Impl* pParent, FileViewFlags nFlags); - virtual ~ViewTabListBox_Impl(); std::unique_ptr<weld::TreeIter> make_iterator() const { return mxTreeView->make_iterator(); } void insert(const OUString &rEntry, const OUString& rId, const OUString& rImage, weld::TreeIter& rIter) @@ -446,10 +445,6 @@ IMPL_LINK_NOARG(ViewTabListBox_Impl, EditingEntryHdl, const weld::TreeIter&, boo return mbEditing; } -ViewTabListBox_Impl::~ViewTabListBox_Impl() -{ -} - IMPL_LINK_NOARG(ViewTabListBox_Impl, ResetQuickSearch_Impl, Timer *, void) { ::osl::MutexGuard aGuard( maMutex ); diff --git a/fpicker/source/office/fileview.hxx b/fpicker/source/office/fileview.hxx index f994d7a1f4d0..4c2a8f60af58 100644 --- a/fpicker/source/office/fileview.hxx +++ b/fpicker/source/office/fileview.hxx @@ -73,7 +73,7 @@ public: std::unique_ptr<weld::TreeView> xTreeView, std::unique_ptr<weld::IconView> xIconView, bool bOnlyFolder, bool bMultiSelection, bool bShowType = true); - virtual ~SvtFileView(); + ~SvtFileView(); void SetViewMode( FileViewMode eMode ); |