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 --- doc/fl_choice.html | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) (limited to 'doc/fl_choice.html') diff --git a/doc/fl_choice.html b/doc/fl_choice.html index 9f83a30..777cece 100644 --- a/doc/fl_choice.html +++ b/doc/fl_choice.html @@ -79,15 +79,6 @@ function Handle - -Get the index into the Fl_Menu_Item array and do a manual lookup. -
-function Get_Chosen
-       (This : in Choice)
-    return FLTK.Menu_Items.Menu_Item_Reference;
-
- -
 int value() const;
@@ -101,23 +92,33 @@ function Chosen_Index
 
   
 
-int value(int v);
+int value(const Fl_Menu_Item *v);
 
 procedure Set_Chosen
-       (This  : in out Choice;
-        Place : in     Index);
+       (This : in out Choice;
+        Item : in     FLTK.Menu_Items.Menu_Item);
+
+function Set_Chosen
+       (This : in out Choice;
+        Item : in     FLTK.Menu_Items.Menu_Item)
+    return Boolean;
 
-int value(const Fl_Menu_Item *v);
+int value(int v);
 
 procedure Set_Chosen
-       (This : in out Choice;
-        Item : in     FLTK.Menu_Items.Menu_Item);
+       (This  : in out Choice;
+        Place : in     Index);
+
+function Set_Chosen
+       (This  : in out Choice;
+        Place : in     Index)
+    return Boolean;
 
-- cgit