diff options
Diffstat (limited to 'fluid/Fl_Button_Type.h')
| -rw-r--r-- | fluid/Fl_Button_Type.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fluid/Fl_Button_Type.h b/fluid/Fl_Button_Type.h index 2013e1646..ea7ed7cd3 100644 --- a/fluid/Fl_Button_Type.h +++ b/fluid/Fl_Button_Type.h @@ -34,7 +34,7 @@ public: Fl_Widget_Type *_make() FL_OVERRIDE { return new Fl_Button_Type(); } int is_button() const FL_OVERRIDE { return 1; } ID id() const FL_OVERRIDE { return ID_Button; } - bool is_a(ID inID) FL_OVERRIDE { return (inID==ID_Button) ? true : super::is_a(inID); } + bool is_a(ID inID) const FL_OVERRIDE { return (inID==ID_Button) ? true : super::is_a(inID); } }; extern Fl_Button_Type Fl_Button_type; |
