diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2007-05-09 12:50:32 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2007-05-09 12:50:32 +0000 |
| commit | 8ff61aeef7ab6e4100c739ec881a5011e650879b (patch) | |
| tree | 253b3d2b04fab250949b520f77d71f54f6b2ad0f | |
| parent | 8f8882a08493e974449631de5cff5f30df7082f8 (diff) | |
STR #1571: Added direct access to changed() in Fl_Input_choice
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5806 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | FL/Fl_Input_Choice.H | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/FL/Fl_Input_Choice.H b/FL/Fl_Input_Choice.H index 1a2d78372..344827ed1 100644 --- a/FL/Fl_Input_Choice.H +++ b/FL/Fl_Input_Choice.H @@ -96,6 +96,9 @@ public: void add(const char *s) { menu_->add(s); } + int changed() const { + return inp_->changed(); + } void clear() { menu_->clear(); } |
