summaryrefslogtreecommitdiff
path: root/include/vcl/treelistbox.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-08-26 14:23:00 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-08-26 18:50:45 +0200
commitaded8531db7247cceb8960278169bd7eff918ca7 (patch)
tree585440372b5e0893657ac49563f4e5b215f419f7 /include/vcl/treelistbox.hxx
parentb5317b2a41e6369e2804462e2ab73f1447f1533a (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 'include/vcl/treelistbox.hxx')
-rw-r--r--include/vcl/treelistbox.hxx14
1 files changed, 3 insertions, 11 deletions
diff --git a/include/vcl/treelistbox.hxx b/include/vcl/treelistbox.hxx
index ef515aebf5a8..470299180818 100644
--- a/include/vcl/treelistbox.hxx
+++ b/include/vcl/treelistbox.hxx
@@ -54,12 +54,6 @@ namespace utl {
class AccessibleStateSetHelper;
}
-enum class SvLBoxButtonKind
-{
- EnabledCheckbox,
- DisabledCheckbox
-};
-
enum class SvButtonState { Unchecked, Checked, Tristate };
// *********************************************************************
@@ -531,7 +525,7 @@ protected:
SvLBoxTab* GetTab( SvTreeListEntry const *, SvLBoxItem const * ) const;
void ClearTabList();
- virtual void InitEntry(SvTreeListEntry*, const OUString&, const Image&, const Image&, SvLBoxButtonKind);
+ virtual void InitEntry(SvTreeListEntry*, const OUString&, const Image&, const Image&);
virtual void NotifyEndScroll();
virtual void NotifyScrolled();
@@ -589,16 +583,14 @@ public:
virtual SvTreeListEntry* InsertEntry( const OUString& rText, SvTreeListEntry* pParent = nullptr,
bool bChildrenOnDemand = false,
- sal_uLong nPos=TREELIST_APPEND, void* pUserData = nullptr,
- SvLBoxButtonKind eButtonKind = SvLBoxButtonKind::EnabledCheckbox );
+ sal_uLong nPos=TREELIST_APPEND, void* pUserData = nullptr);
virtual SvTreeListEntry* InsertEntry( const OUString& rText,
const Image& rExpandedEntryBmp,
const Image& rCollapsedEntryBmp,
SvTreeListEntry* pParent = nullptr,
bool bChildrenOnDemand = false,
- sal_uLong nPos = TREELIST_APPEND, void* pUserData = nullptr,
- SvLBoxButtonKind eButtonKind = SvLBoxButtonKind::EnabledCheckbox );
+ sal_uLong nPos = TREELIST_APPEND, void* pUserData = nullptr );
const Image& GetDefaultExpandedEntryBmp( ) const;
const Image& GetDefaultCollapsedEntryBmp( ) const;