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

Jan Holesovsky kendy at collabora.com
Tue Dec 8 02:47:04 PST 2015


 include/vcl/button.hxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit e20df218257c45c5daa234daafac9609d53aa77f
Author: Jan Holesovsky <kendy at collabora.com>
Date:   Tue Dec 8 09:19:35 2015 +0100

    These should still be virtual.
    
    Change-Id: I11a8f9db15a576ff9926f8f827cbcc08a345ffa4

diff --git a/include/vcl/button.hxx b/include/vcl/button.hxx
index 81c79a2..9665dfd 100644
--- a/include/vcl/button.hxx
+++ b/include/vcl/button.hxx
@@ -94,7 +94,7 @@ public:
     virtual bool        set_property(const OString &rKey, const OString &rValue) override;
 
     /// Sets the button state according to the FeatureStateEvent emitted by an Uno state change.
-    void                statusChanged(const css::frame::FeatureStateEvent& rEvent);
+    virtual void        statusChanged(const css::frame::FeatureStateEvent& rEvent);
 
 protected:
 
@@ -187,7 +187,7 @@ public:
 
     void            SetState( TriState eState );
     TriState        GetState() const { return meState; }
-    void            statusChanged(const css::frame::FeatureStateEvent& rEvent);
+    virtual void    statusChanged(const css::frame::FeatureStateEvent& rEvent) override;
 
     void            Check( bool bCheck = true );
     bool            IsChecked() const;


More information about the Libreoffice-commits mailing list