[Libreoffice-commits] core.git: cui/source include/vcl

Noel Grandin (via logerrit) logerrit at kemper.freedesktop.org
Thu Jun 11 16:30:46 UTC 2020


 cui/source/inc/newtabledlg.hxx |    4 ++--
 include/vcl/lstbox.hxx         |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 708260185151d7e71e7bf5d298eba0e638fd2a1b
Author:     Noel Grandin <noel.grandin at collabora.co.uk>
AuthorDate: Thu Jun 11 13:00:25 2020 +0200
Commit:     Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Thu Jun 11 18:30:08 2020 +0200

    loplugin:unnecessaryvirtual
    
    Change-Id: I40c03b338e00d8a62b8b243d8467b43342c4b093
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96115
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

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
diff --git a/include/vcl/lstbox.hxx b/include/vcl/lstbox.hxx
index ff44aa59af14..403d429f2605 100644
--- a/include/vcl/lstbox.hxx
+++ b/include/vcl/lstbox.hxx
@@ -128,7 +128,7 @@ public:
     virtual void        StateChanged( StateChangedType nType ) override;
     virtual void        DataChanged( const DataChangedEvent& rDCEvt ) override;
 
-    virtual void        Select();
+    void                Select();
     void                DoubleClick();
     virtual void        GetFocus() override;
     virtual void        LoseFocus() override;


More information about the Libreoffice-commits mailing list