diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-08-17 08:48:51 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-08-17 14:18:13 +0200 |
commit | 0e0fb5eaae14d7077c1bdce5bf45e50ed07bcd11 (patch) | |
tree | ac2f53e6979347804f62434ba65550e3188581af /desktop | |
parent | edcdfe5477559ca6c62897f0cad47d4d6149d77a (diff) |
loplugin:unnecessaryvirtual
Change-Id: I9f2e524a4fb467ddc198fce1ff4740d3768ceeac
Reviewed-on: https://gerrit.libreoffice.org/77618
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/deployment/gui/dp_gui_extlistbox.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/deployment/gui/dp_gui_extlistbox.hxx b/desktop/source/deployment/gui/dp_gui_extlistbox.hxx index f0400e63cfd0..5cb6edf744cc 100644 --- a/desktop/source/deployment/gui/dp_gui_extlistbox.hxx +++ b/desktop/source/deployment/gui/dp_gui_extlistbox.hxx @@ -197,7 +197,7 @@ public: enum { ENTRY_NOTFOUND = -1 }; /** @return The count of the entries in the list box. */ - virtual sal_Int32 getItemCount() const; + sal_Int32 getItemCount() const; /** @return The index of the first selected entry in the list box. When nothing is selected, which is the case when getItemCount returns '0', @@ -205,7 +205,7 @@ public: /** @return The index of the first selected entry in the list box. When nothing is selected, which is the case when getItemCount returns '0', then this function returns ENTRY_NOTFOUND */ - virtual sal_Int32 getSelIndex() const; + sal_Int32 getSelIndex() const; }; } |