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_Tabs.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_Tabs.H')
| -rw-r--r-- | FL/Fl_Tabs.H | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/FL/Fl_Tabs.H b/FL/Fl_Tabs.H index 176cd01ce..e2dfcf070 100644 --- a/FL/Fl_Tabs.H +++ b/FL/Fl_Tabs.H @@ -1,5 +1,5 @@ // -// "$Id: Fl_Tabs.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $" +// "$Id: Fl_Tabs.H,v 1.5.2.3 2000/06/10 19:30:00 carl Exp $" // // Tab header file for the Fast Light Tool Kit (FLTK). // @@ -31,10 +31,12 @@ class Fl_Tabs : public Fl_Group { Fl_Widget *value_; Fl_Widget *push_; - FL_EXPORT void draw(); FL_EXPORT int tab_positions(int*, int*); FL_EXPORT int tab_height(); FL_EXPORT void draw_tab(int x1, int x2, int W, int H, Fl_Widget* o, int sel=0); +protected: + FL_EXPORT void draw(); + public: FL_EXPORT int handle(int); FL_EXPORT Fl_Widget *value(); @@ -48,5 +50,5 @@ public: #endif // -// End of "$Id: Fl_Tabs.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $". +// End of "$Id: Fl_Tabs.H,v 1.5.2.3 2000/06/10 19:30:00 carl Exp $". // |
