From 17abd7136d8fb7f6b6a52f8158f899be9e41be5a Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Sun, 15 Jun 2003 04:47:28 +0000 Subject: Several widgets defined their own size() method but didn't provide an inline method that mapped to the Fl_Widget::size() method (STR #62) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3033 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/Fl_Chart.H | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'FL/Fl_Chart.H') diff --git a/FL/Fl_Chart.H b/FL/Fl_Chart.H index 27ae8a17a..90241554e 100644 --- a/FL/Fl_Chart.H +++ b/FL/Fl_Chart.H @@ -1,5 +1,5 @@ // -// "$Id: Fl_Chart.H,v 1.6.2.3.2.5 2003/01/30 21:38:47 easysw Exp $" +// "$Id: Fl_Chart.H,v 1.6.2.3.2.6 2003/06/15 04:47:27 easysw Exp $" // // Forms chart header file for the Fast Light Tool Kit (FLTK). // @@ -71,6 +71,7 @@ public: void bounds(double *a,double *b) const {*a = min; *b = max;} void bounds(double a,double b); int size() const {return numb;} + void size(int W, int H) { Fl_Widget::size(W, H); } int maxsize() const {return maxnumb;} void maxsize(int); Fl_Font textfont() const {return (Fl_Font)textfont_;} @@ -86,5 +87,5 @@ public: #endif // -// End of "$Id: Fl_Chart.H,v 1.6.2.3.2.5 2003/01/30 21:38:47 easysw Exp $". +// End of "$Id: Fl_Chart.H,v 1.6.2.3.2.6 2003/06/15 04:47:27 easysw Exp $". // -- cgit v1.2.3