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

New commits:
commit d1399191e0a18ac5cae0d63319a48864f1f481e7
Author: Miklos Vajna <vmik...@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 <vmik...@collabora.co.uk>
    Tested-by: Jenkins <c...@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
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to