summaryrefslogtreecommitdiff
path: root/include/vcl/button.hxx
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2015-12-08 09:19:35 +0100
committerJan Holesovsky <kendy@collabora.com>2015-12-08 11:46:36 +0100
commite20df218257c45c5daa234daafac9609d53aa77f (patch)
treec2821fb6fae99535a827f3ca2735f88e1ae2b3d8 /include/vcl/button.hxx
parentb088fc60b42646cf55fde3c2dba4e8cd48753ee6 (diff)
These should still be virtual.
Change-Id: I11a8f9db15a576ff9926f8f827cbcc08a345ffa4
Diffstat (limited to 'include/vcl/button.hxx')
-rw-r--r--include/vcl/button.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/button.hxx b/include/vcl/button.hxx
index 81c79a2b1de8..9665dfd10ea1 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;