From c477cd9b9879692a03178e67e71448fc97033b66 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Sat, 10 Dec 2022 02:02:35 +1300 Subject: Reworked menu popup and pulldown subprograms to no longer need exceptions --- doc/fl_menu_.html | 4 ++-- doc/fl_menu_button.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'doc') diff --git a/doc/fl_menu_.html b/doc/fl_menu_.html index 731c16e..522c6e7 100644 --- a/doc/fl_menu_.html +++ b/doc/fl_menu_.html @@ -401,7 +401,7 @@ function Popup X, Y : in Integer; Title : in String := ""; Initial : in Extended_Index := No_Index) - return FLTK.Menu_Items.Menu_Item_Reference; + return Extended_Index; @@ -412,7 +412,7 @@ function Pulldown (This : in Menu; X, Y, W, H : in Integer; Initial : in Extended_Index := No_Index) - return FLTK.Menu_Items.Menu_Item_Reference; + return Extended_Index; diff --git a/doc/fl_menu_button.html b/doc/fl_menu_button.html index 55b9e57..0cc1a9d 100644 --- a/doc/fl_menu_button.html +++ b/doc/fl_menu_button.html @@ -92,7 +92,7 @@ const Fl_Menu_Item * popup();
 function Popup
        (This : in out Menu_Button)
-    return FLTK.Menu_Items.Menu_Item;
+    return Extended_Index;
 
-- cgit