From a4b6a06f372923fb38ae4d3c7e0429ce93ea7748 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sun, 15 Apr 2018 19:41:33 +1000 Subject: Started process of polishing packages --- src/c_fl_button.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/c_fl_button.cpp') diff --git a/src/c_fl_button.cpp b/src/c_fl_button.cpp index bdd3eb3..749913d 100644 --- a/src/c_fl_button.cpp +++ b/src/c_fl_button.cpp @@ -71,34 +71,34 @@ void free_fl_button(BUTTON b) { int fl_button_get_state(BUTTON b) { - return reinterpret_cast(b)->value(); + return reinterpret_cast(b)->Fl_Button::value(); } void fl_button_set_state(BUTTON b, int s) { - reinterpret_cast(b)->value(s); + reinterpret_cast(b)->Fl_Button::value(s); } void fl_button_set_only(BUTTON b) { - reinterpret_cast(b)->setonly(); + reinterpret_cast(b)->Fl_Button::setonly(); } int fl_button_get_down_box(BUTTON b) { - return reinterpret_cast(b)->down_box(); + return reinterpret_cast(b)->Fl_Button::down_box(); } void fl_button_set_down_box(BUTTON b, int t) { - reinterpret_cast(b)->down_box(static_cast(t)); + reinterpret_cast(b)->Fl_Button::down_box(static_cast(t)); } int fl_button_get_shortcut(BUTTON b) { - return reinterpret_cast(b)->shortcut(); + return reinterpret_cast(b)->Fl_Button::shortcut(); } void fl_button_set_shortcut(BUTTON b, int k) { - reinterpret_cast(b)->shortcut(k); + reinterpret_cast(b)->Fl_Button::shortcut(k); } -- cgit