From ba1719013e5bab82a2accb4aadfd8451c3ebc931 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Thu, 16 Jan 2025 12:17:46 +1300 Subject: Fixed bug in Fl_Choice binding, filled small hole in Fl_Menu_Button binding --- src/c_fl_choice.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/c_fl_choice.h') diff --git a/src/c_fl_choice.h b/src/c_fl_choice.h index 5d076b1..031e67e 100644 --- a/src/c_fl_choice.h +++ b/src/c_fl_choice.h @@ -16,8 +16,8 @@ extern "C" void free_fl_choice(CHOICE b); extern "C" int fl_choice_value(CHOICE c); -extern "C" int fl_choice_set_value(CHOICE c, int p); -extern "C" int fl_choice_set_value2(CHOICE c, void * i); +extern "C" int fl_choice_set_value(CHOICE c, void * i); +extern "C" int fl_choice_set_value2(CHOICE c, int p); extern "C" void fl_choice_draw(CHOICE n); -- cgit