summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2007-11-19 15:46:24 +0000
committerMatthias Melcher <fltk@matthiasm.com>2007-11-19 15:46:24 +0000
commit7ec5f44a7f06213480ba61d9c84186b530bed53c (patch)
tree108a67e84f7eb90482cc15722dfab83b7ad456f9 /FL
parent2217ab964b4e3d9a80c331cf604a3c30caf2528d (diff)
STR #1767: Adding "remove" function for the Fl_Check_Browser
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5979 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl_Check_Browser.H1
1 files changed, 1 insertions, 0 deletions
diff --git a/FL/Fl_Check_Browser.H b/FL/Fl_Check_Browser.H
index 771558dc4..713f5cd56 100644
--- a/FL/Fl_Check_Browser.H
+++ b/FL/Fl_Check_Browser.H
@@ -73,6 +73,7 @@ class FL_EXPORT Fl_Check_Browser : public Fl_Browser_ {
int add(char *s); // add an (unchecked) item
int add(char *s, int b); // add an item and set checked
// both return the new nitems()
+ int remove(int item); // delete an item. Returns nitems()
// inline const char * methods to avoid breaking binary compatibility...
int add(const char *s) { return add((char *)s); }