diff --git a/CHANGES b/CHANGES index 3f2560011..6b11d6cc4 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,8 @@ CHANGES IN FLTK 1.1.0 - Documentation updates. + - The Fl_Text_Display::resize() method was incorrectly + flagged as protected. - Fixed some memory/initialization bugs in Fl_File_Chooser that valgrind caught. - The PNG library png_read_destroy() is deprecated and diff --git a/FL/Fl_Text_Display.H b/FL/Fl_Text_Display.H index 575748758..60c90115e 100644 --- a/FL/Fl_Text_Display.H +++ b/FL/Fl_Text_Display.H @@ -1,5 +1,5 @@ // -// "$Id: Fl_Text_Display.H,v 1.4.2.8 2002/06/09 18:28:48 easysw Exp $" +// "$Id: Fl_Text_Display.H,v 1.4.2.9 2002/08/05 18:03:58 easysw Exp $" // // Header file for Fl_Text_Display class. // @@ -117,12 +117,13 @@ class Fl_Text_Display: public Fl_Group { Fl_Color textcolor() const {return (Fl_Color)textcolor_;} void textcolor(unsigned n) {textcolor_ = n;} + FL_EXPORT virtual void resize(int X, int Y, int W, int H); + protected: // Most (all?) of this stuff should only be called from resize() or // draw(). // Anything with "vline" indicates thats it deals with currently // visible lines. - FL_EXPORT virtual void resize(int X, int Y, int W, int H); FL_EXPORT virtual void draw(); FL_EXPORT void draw_text(int X, int Y, int W, int H); @@ -242,5 +243,5 @@ class Fl_Text_Display: public Fl_Group { #endif // -// End of "$Id: Fl_Text_Display.H,v 1.4.2.8 2002/06/09 18:28:48 easysw Exp $". +// End of "$Id: Fl_Text_Display.H,v 1.4.2.9 2002/08/05 18:03:58 easysw Exp $". //