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 /src/c_fl_scroll.h | |
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 'src/c_fl_scroll.h')
-rw-r--r-- | src/c_fl_scroll.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/c_fl_scroll.h b/src/c_fl_scroll.h index 9bbd749..a6f3767 100644 --- a/src/c_fl_scroll.h +++ b/src/c_fl_scroll.h @@ -15,7 +15,8 @@ extern "C" SCROLL new_fl_scroll(int x, int y, int w, int h, char* label); extern "C" void free_fl_scroll(SCROLL s); -extern "C" void fl_scroll_clear(SCROLL s); +extern "C" void * fl_scroll_hscrollbar(SCROLL s); +extern "C" void * fl_scroll_scrollbar(SCROLL s); extern "C" void fl_scroll_to(SCROLL s, int x, int y); |