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 /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 'vcl')
-rw-r--r-- | vcl/source/treelist/svimpbox.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/treelist/svimpbox.cxx b/vcl/source/treelist/svimpbox.cxx index e8bd4da9ca0c..a52e3419ad62 100644 --- a/vcl/source/treelist/svimpbox.cxx +++ b/vcl/source/treelist/svimpbox.cxx @@ -2935,7 +2935,7 @@ void SvImpLBox::Command( const CommandEvent& rCEvt ) } { - VclPtr<PopupMenu> pPopup = m_pView->CreateContextMenu(); + VclPtr<PopupMenu> pPopup = SvTreeListBox::CreateContextMenu(); if (pPopup) { // do action for selected entry in popup menu |