From 8ff61aeef7ab6e4100c739ec881a5011e650879b Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Wed, 9 May 2007 12:50:32 +0000 Subject: [PATCH] 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 --- FL/Fl_Input_Choice.H | 3 +++ 1 file changed, 3 insertions(+) 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(); }