summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2022-12-10 02:02:35 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2022-12-10 02:02:35 +1300
commitc477cd9b9879692a03178e67e71448fc97033b66 (patch)
treeacbfcd7bcf0dd138196e00a79800c22ae923f6b2 /doc
parent5c4cea0152fca573e7b2832799ead10afd0697a6 (diff)
Reworked menu popup and pulldown subprograms to no longer need exceptions
Diffstat (limited to 'doc')
-rw-r--r--doc/fl_menu_.html4
-rw-r--r--doc/fl_menu_button.html2
2 files changed, 3 insertions, 3 deletions
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;
</pre></td>
</tr>
@@ -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;
</pre></td>
</tr>
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();
<td><pre>
function Popup
(This : in out Menu_Button)
- return FLTK.Menu_Items.Menu_Item;
+ return Extended_Index;
</pre></td>
</tr>