diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-12 13:16:48 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-12 14:06:05 +1300 |
commit | f8b638b57cc1318ef3536efae662b54b3d14a3bb (patch) | |
tree | 3d1e34a93bfa418e0dbbeb18b8a490d13d915895 /doc | |
parent | e93b9bbc02e2791f3a35b6f077fcbb8514c28aed (diff) |
Added show(int argc, char **argv) methods for Window classes
Diffstat (limited to 'doc')
-rw-r--r-- | doc/fl_double_window.html | 5 | ||||
-rw-r--r-- | doc/fl_gl_window.html | 10 | ||||
-rw-r--r-- | doc/fl_overlay_window.html | 5 | ||||
-rw-r--r-- | doc/fl_single_window.html | 5 | ||||
-rw-r--r-- | doc/fl_window.html | 5 |
5 files changed, 25 insertions, 5 deletions
diff --git a/doc/fl_double_window.html b/doc/fl_double_window.html index 6c61c93..cdaf7a4 100644 --- a/doc/fl_double_window.html +++ b/doc/fl_double_window.html @@ -138,7 +138,10 @@ procedure Show <td><pre> void show(int a, char **b); </pre></td> -<td> </td> +<td><pre> +procedure Show_With_Args + (This : in out Double_Window); +</pre></td> </tr> </table> diff --git a/doc/fl_gl_window.html b/doc/fl_gl_window.html index b213406..5dfc0fe 100644 --- a/doc/fl_gl_window.html +++ b/doc/fl_gl_window.html @@ -356,11 +356,19 @@ procedure Resize <tr> <td><pre> void show(); +</pre></td> +<td><pre> +procedure Show + (This : in out GL_Window); +</pre></td> + </tr> + <tr> +<td><pre> void show(int a, char **b); </pre></td> <td><pre> -procedure Show +procedure Show_With_Args (This : in out GL_Window); </pre></td> </tr> diff --git a/doc/fl_overlay_window.html b/doc/fl_overlay_window.html index ac86aac..ef338bc 100644 --- a/doc/fl_overlay_window.html +++ b/doc/fl_overlay_window.html @@ -145,7 +145,10 @@ procedure Show <td><pre> void show(int a, char **b); </pre></td> -<td> </td> +<td><pre> +procedure Show_With_Args + (This : in out Overlay_Window); +</pre></td> </tr> </table> diff --git a/doc/fl_single_window.html b/doc/fl_single_window.html index 4fb76b2..21f97db 100644 --- a/doc/fl_single_window.html +++ b/doc/fl_single_window.html @@ -113,7 +113,10 @@ procedure Show <td><pre> void show(int a, char **b); </pre></td> -<td> </td> +<td><pre> +procedure Show_With_Args + (This : in out Single_Window); +</pre></td> </tr> </table> diff --git a/doc/fl_window.html b/doc/fl_window.html index 9b39c93..93ab5fd 100644 --- a/doc/fl_window.html +++ b/doc/fl_window.html @@ -618,7 +618,10 @@ procedure Show <td><pre> void show(int argc, char **argv); </pre></td> -<td> </td> +<td><pre> +procedure Show_With_Args + (This : in out Window); +</pre></td> </tr> <tr> |