diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-08-26 14:23:00 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-08-26 18:50:45 +0200 |
commit | aded8531db7247cceb8960278169bd7eff918ca7 (patch) | |
tree | 585440372b5e0893657ac49563f4e5b215f419f7 /svx | |
parent | b5317b2a41e6369e2804462e2ab73f1447f1533a (diff) |
enum SvLBoxButtonKind is effectively unused
since
commit e569b9d40eb02f53a3f13024af4ab1dc9ca7634a
Date: Tue Jul 30 17:07:41 2019 +0100
weld OfaMSFilterTabPage2
Change-Id: If8777180aec04336eda08c75bbee400de2ccb43b
Reviewed-on: https://gerrit.libreoffice.org/78136
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/form/filtnav.cxx | 5 | ||||
-rw-r--r-- | svx/source/inc/filtnav.hxx | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/svx/source/form/filtnav.cxx b/svx/source/form/filtnav.cxx index 3886630dcf58..0d29422d6429 100644 --- a/svx/source/form/filtnav.cxx +++ b/svx/source/form/filtnav.cxx @@ -1333,10 +1333,9 @@ sal_Int8 FmFilterNavigator::ExecuteDrop( const ExecuteDropEvent& rEvt ) void FmFilterNavigator::InitEntry(SvTreeListEntry* pEntry, const OUString& rStr, const Image& rImg1, - const Image& rImg2, - SvLBoxButtonKind eButtonKind) + const Image& rImg2) { - SvTreeListBox::InitEntry( pEntry, rStr, rImg1, rImg2, eButtonKind ); + SvTreeListBox::InitEntry( pEntry, rStr, rImg1, rImg2 ); std::unique_ptr<SvLBoxString> pString; if (dynamic_cast<const FmFilterItem*>(static_cast<FmFilterData*>(pEntry->GetUserData())) != nullptr) diff --git a/svx/source/inc/filtnav.hxx b/svx/source/inc/filtnav.hxx index cd61c69bfbe7..cac94f4a159a 100644 --- a/svx/source/inc/filtnav.hxx +++ b/svx/source/inc/filtnav.hxx @@ -254,7 +254,7 @@ private: virtual void KeyInput( const KeyEvent& rKEvt ) override; virtual void Command( const CommandEvent& rEvt ) override; virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override; - virtual void InitEntry(SvTreeListEntry* pEntry, const OUString& rStr, const Image& rImg1, const Image& rImg2, SvLBoxButtonKind eButtonKind) override; + virtual void InitEntry(SvTreeListEntry* pEntry, const OUString& rStr, const Image& rImg1, const Image& rImg2) override; virtual bool Select( SvTreeListEntry* pEntry, bool bSelect=true ) override; virtual bool EditingEntry( SvTreeListEntry* pEntry, Selection& rSelection ) override; virtual bool EditedEntry( SvTreeListEntry* pEntry, const OUString& rNewText ) override; |