diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-06-11 13:00:25 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-06-11 18:30:08 +0200 |
commit | 708260185151d7e71e7bf5d298eba0e638fd2a1b (patch) | |
tree | 90fec29189f3fdf6d228b49f6cd51bc7d4e2a346 /cui/source/inc | |
parent | 7ccfba06efaa28423accaeab9cd248fa0093f737 (diff) |
loplugin:unnecessaryvirtual
Change-Id: I40c03b338e00d8a62b8b243d8467b43342c4b093
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96115
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cui/source/inc')
-rw-r--r-- | cui/source/inc/newtabledlg.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/inc/newtabledlg.hxx b/cui/source/inc/newtabledlg.hxx index 9ec717c70ab1..d0e21293ca52 100644 --- a/cui/source/inc/newtabledlg.hxx +++ b/cui/source/inc/newtabledlg.hxx @@ -31,8 +31,8 @@ private: public: SvxNewTableDialog(weld::Window* pParent); - virtual sal_Int32 getRows() const; - virtual sal_Int32 getColumns() const; + sal_Int32 getRows() const; + sal_Int32 getColumns() const; }; class SvxNewTableDialogWrapper : public SvxAbstractNewTableDialog |