diff options
| author | Carl E. Thompson <devel-fltk@carlthompson.net> | 2000-06-10 19:30:01 +0000 |
|---|---|---|
| committer | Carl E. Thompson <devel-fltk@carlthompson.net> | 2000-06-10 19:30:01 +0000 |
| commit | b3d9c227bc6d167fe24fc21e318c04a05d810be8 (patch) | |
| tree | 8732955c8905678c3aa0aaa7c879915bd03a9b00 /FL/Fl_Group.H | |
| parent | 8e5c8b50d3f480265cdea227186ece0b1c29fc15 (diff) | |
Made sure all draw()s were protected and all handle()s were public. (Most
were already.)
Looks like I forgot to commit those changes to eliminate Mesa dependancy in
the code. Here it is.
Carl
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1189 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Group.H')
| -rw-r--r-- | FL/Fl_Group.H | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FL/Fl_Group.H b/FL/Fl_Group.H index 5ea5a2ccd..803dd89fe 100644 --- a/FL/Fl_Group.H +++ b/FL/Fl_Group.H @@ -1,5 +1,5 @@ // -// "$Id: Fl_Group.H,v 1.6.2.2 2000/06/05 21:20:23 mike Exp $" +// "$Id: Fl_Group.H,v 1.6.2.3 2000/06/10 19:29:59 carl Exp $" // // Group header file for the Fast Light Tool Kit (FLTK). // @@ -44,7 +44,6 @@ class Fl_Group : public Fl_Widget { protected: FL_EXPORT void draw(); - FL_EXPORT int handle(int); FL_EXPORT void draw_child(Fl_Widget&) const; FL_EXPORT void update_child(Fl_Widget&) const; FL_EXPORT void draw_outside_label(const Fl_Widget&) const ; @@ -52,6 +51,7 @@ protected: public: + FL_EXPORT int handle(int); void begin() {current_ = this;} void end() {current_ = (Fl_Group*)parent();} static Fl_Group *current() {return current_;} @@ -96,5 +96,5 @@ public: #endif // -// End of "$Id: Fl_Group.H,v 1.6.2.2 2000/06/05 21:20:23 mike Exp $". +// End of "$Id: Fl_Group.H,v 1.6.2.3 2000/06/10 19:29:59 carl Exp $". // |
