diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-14 00:06:33 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-14 00:06:33 +1300 |
commit | 88ca2ea14ba6651404cd4ea347ac8f06afdd0558 (patch) | |
tree | 74f6b8064f112bd96e66c060537c439ec54d67cd /doc/fl_scroll.html | |
parent | 41fca67267180571b5107bf7b9516eb669588b25 (diff) |
Ensured Widgets will remove themselves from a Group upon dealloc and Groups won't inadvertantly dealloc Widgets upon Clear
Diffstat (limited to 'doc/fl_scroll.html')
-rw-r--r-- | doc/fl_scroll.html | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/doc/fl_scroll.html b/doc/fl_scroll.html index 697fc9b..aa2b5f8 100644 --- a/doc/fl_scroll.html +++ b/doc/fl_scroll.html @@ -57,14 +57,22 @@ <td><pre> Fl_Scrollbar hscrollbar; </pre></td> -<td> </td> +<td><pre> +function H_Bar + (This : in out Scroll) + return Valuators.Sliders.Scrollbars.Scrollbar_Reference; +</pre></td> </tr> <tr> <td><pre> Fl_Scrollbar scrollbar; </pre></td> -<td> </td> +<td><pre> +function V_Bar + (This : in out Scroll) + return Valuators.Sliders.Scrollbars.Scrollbar_Reference; +</pre></td> </tr> </table> |