From e324057cbd9b02704172bb5db4163f4a0c276288 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Sun, 12 Jan 2025 15:11:40 +1300 Subject: Closed a few gaps in the APIs of Window derivatives --- doc/fl_menu_window.html | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'doc/fl_menu_window.html') diff --git a/doc/fl_menu_window.html b/doc/fl_menu_window.html index 523c1d5..a62f2f0 100644 --- a/doc/fl_menu_window.html +++ b/doc/fl_menu_window.html @@ -55,7 +55,7 @@ Fl_Menu_Window(int W, int H, const char *L=0);
 function Create
        (W, H : in Integer;
-        Text : in String)
+        Text : in String := "")
     return Menu_Window;
 
@@ -67,7 +67,7 @@ Fl_Menu_Window(int X, int Y, int W, int H, const char *L=0);
 function Create
        (X, Y, W, H : in Integer;
-        Text       : in String)
+        Text       : in String := "")
     return Menu_Window;
 
@@ -83,14 +83,20 @@ function Create
 void clear_overlay();
 
-See set_overlay(); +
+procedure Clear_Overlay
+       (This : in out Menu_Window);
+
 void erase();
 
-  +
+procedure Erase
+       (This : in out Menu_Window);
+
@@ -131,7 +137,7 @@ void set_overlay();
 procedure Set_Overlay
        (This  : in out Menu_Window;
-        Value : in     Boolean);
+        Value : in     Boolean := True);
 
-- cgit