diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-16 11:21:44 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-16 13:48:36 +0200 |
commit | a568abf851f24cb4b3f9cadb1699154ae41b8202 (patch) | |
tree | 5ba454e5496e2ded75474e2cdcb7296036998b81 /include/vcl | |
parent | b011e696f26618256ac65d0ea492553ee0a9cdd6 (diff) |
loplugin:unnecessaryvirtual
Change-Id: Iafad1df533d5fefd335066427a0fb9e2d8bfa91d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100817
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/toolkit/treelistbox.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/vcl/toolkit/treelistbox.hxx b/include/vcl/toolkit/treelistbox.hxx index f485ca967b89..fd2ce95cb755 100644 --- a/include/vcl/toolkit/treelistbox.hxx +++ b/include/vcl/toolkit/treelistbox.hxx @@ -414,9 +414,9 @@ public: void ExpandedHdl(); bool ExpandingHdl(); - virtual void SelectHdl(); - virtual void DeselectHdl(); - virtual bool DoubleClickHdl(); + void SelectHdl(); + void DeselectHdl(); + bool DoubleClickHdl(); SvTreeListEntry* GetHdlEntry() const { return pHdlEntry; } // Is called for an Entry that gets expanded with the Flag @@ -580,7 +580,7 @@ public: static const Image& GetExpandedEntryBmp(const SvTreeListEntry* _pEntry ); static const Image& GetCollapsedEntryBmp(const SvTreeListEntry* _pEntry ); - virtual void CheckButtonHdl(); + void CheckButtonHdl(); void SetSublistOpenWithLeftRight(); // open/close sublist with cursor left/right @@ -673,7 +673,7 @@ public: void ShowFocusRect( const SvTreeListEntry* pEntry ); - virtual VclPtr<PopupMenu> CreateContextMenu(); + static VclPtr<PopupMenu> CreateContextMenu(); void EnableContextMenuHandling(); |