summaryrefslogtreecommitdiff
path: root/src/Fl_File_Chooser.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2005-08-08 00:50:02 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2005-08-08 00:50:02 +0000
commitc9f9b4faa0f3d0e307835b20e6b8852910380e3f (patch)
treec9e13bc82f02ad562df26a14d10806b494bf48b7 /src/Fl_File_Chooser.cxx
parentb8dcdf4c648a36182aff048a618463087de41c7c (diff)
Fl_File_Chooser did not implement the user_data() methods (STR
#970) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4473 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_File_Chooser.cxx')
-rw-r--r--src/Fl_File_Chooser.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Fl_File_Chooser.cxx b/src/Fl_File_Chooser.cxx
index a5472964e..107b377cc 100644
--- a/src/Fl_File_Chooser.cxx
+++ b/src/Fl_File_Chooser.cxx
@@ -426,6 +426,14 @@ int Fl_File_Chooser::type() {
return (type_);
}
+void * Fl_File_Chooser::user_data() const {
+ return (data_);
+}
+
+void Fl_File_Chooser::user_data(void *d) {
+ data_ = d;
+}
+
int Fl_File_Chooser::visible() {
return window->visible();
}