[Libreoffice-commits] core.git: include/svl

Miklos Vajna vmiklos at collabora.co.uk
Thu May 18 10:02:38 UTC 2017


 include/svl/grabbagitem.hxx |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit d1399191e0a18ac5cae0d63319a48864f1f481e7
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date:   Thu May 18 09:18:58 2017 +0200

    svl: remove redundant virtual keywords in SfxGrabBagItem
    
    Change-Id: I6e336491da7490390970b670b1c35e2c860f43ce
    Reviewed-on: https://gerrit.libreoffice.org/37745
    Reviewed-by: Miklos Vajna <vmiklos at collabora.co.uk>
    Tested-by: Jenkins <ci at libreoffice.org>

diff --git a/include/svl/grabbagitem.hxx b/include/svl/grabbagitem.hxx
index ca49a27c6835..26aa0f8b818c 100644
--- a/include/svl/grabbagitem.hxx
+++ b/include/svl/grabbagitem.hxx
@@ -25,7 +25,7 @@ public:
 
     SfxGrabBagItem();
     SfxGrabBagItem(sal_uInt16 nWhich);
-    virtual ~SfxGrabBagItem() override;
+    ~SfxGrabBagItem() override;
 
     const std::map<OUString, css::uno::Any>& GetGrabBag() const
     {
@@ -37,11 +37,11 @@ public:
         return m_aMap;
     }
 
-    virtual bool operator==(const SfxPoolItem&) const override;
-    virtual SfxPoolItem* Clone(SfxItemPool* pPool = nullptr) const override;
+    bool operator==(const SfxPoolItem&) const override;
+    SfxPoolItem* Clone(SfxItemPool* pPool = nullptr) const override;
 
-    virtual bool PutValue(const css::uno::Any& rVal, sal_uInt8 nMemberId) override;
-    virtual bool QueryValue(css::uno::Any& rVal, sal_uInt8 nMemberId = 0) const override;
+    bool PutValue(const css::uno::Any& rVal, sal_uInt8 nMemberId) override;
+    bool QueryValue(css::uno::Any& rVal, sal_uInt8 nMemberId = 0) const override;
 };
 #endif
 


More information about the Libreoffice-commits mailing list