From 2b4468a62a55d9f8520582f9aa2e420ab89ed7bd Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Thu, 26 May 2016 04:35:58 +1000 Subject: In the interests of readability and consistent style... --- src/fltk_binding/c_fl_button.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/fltk_binding/c_fl_button.cpp') diff --git a/src/fltk_binding/c_fl_button.cpp b/src/fltk_binding/c_fl_button.cpp index dd4286e..621656c 100644 --- a/src/fltk_binding/c_fl_button.cpp +++ b/src/fltk_binding/c_fl_button.cpp @@ -4,28 +4,28 @@ #include "c_fl_button.h" -my_fl_button new_fl_button(int x, int y, int w, int h, char * label) { - Fl_Button *button = new Fl_Button(x, y, w, h, label); - return button; +BUTTON new_fl_button(int x, int y, int w, int h, char* label) { + Fl_Button *b = new Fl_Button(x, y, w, h, label); + return b; } -void free_fl_button(my_fl_button f) { - delete reinterpret_cast(f); +void free_fl_button(BUTTON b) { + delete reinterpret_cast(b); } -int fl_button_get_state(my_fl_button b) { +int fl_button_get_state(BUTTON b) { return reinterpret_cast(b)->value(); } -void fl_button_set_state(my_fl_button b, int s) { +void fl_button_set_state(BUTTON b, int s) { reinterpret_cast(b)->value(s); } -void fl_button_set_only(my_fl_button b) { +void fl_button_set_only(BUTTON b) { reinterpret_cast(b)->setonly(); } -- cgit