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_radio_button.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/fltk_binding/c_fl_radio_button.h') diff --git a/src/fltk_binding/c_fl_radio_button.h b/src/fltk_binding/c_fl_radio_button.h index 06c3afc..d9ea819 100644 --- a/src/fltk_binding/c_fl_radio_button.h +++ b/src/fltk_binding/c_fl_radio_button.h @@ -4,11 +4,11 @@ #define FL_RADIO_BUTTON_GUARD -typedef void* my_fl_radio_button; +typedef void* RADIOBUTTON; -extern "C" my_fl_radio_button new_fl_radio_button(int x, int y, int w, int h, char * label); -extern "C" void free_fl_radio_button(my_fl_radio_button b); +extern "C" RADIOBUTTON new_fl_radio_button(int x, int y, int w, int h, char* label); +extern "C" void free_fl_radio_button(RADIOBUTTON b); #endif -- cgit