diff options
Diffstat (limited to 'otk/button.cc')
| -rw-r--r-- | otk/button.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/otk/button.cc b/otk/button.cc index 9d6c43b1..150e32d9 100644 --- a/otk/button.cc +++ b/otk/button.cc @@ -65,10 +65,10 @@ void OtkButton::update(void) OtkFocusWidget::update(); } -void OtkButton::expose(const XExposeEvent &e) +bool OtkButton::expose(const XExposeEvent &e) { _dirty = true; - OtkFocusWidget::expose(e); + return OtkFocusWidget::expose(e); } } |
