diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2003-06-15 04:47:28 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2003-06-15 04:47:28 +0000 |
| commit | 17abd7136d8fb7f6b6a52f8158f899be9e41be5a (patch) | |
| tree | 749638e817ddbc5af6c99e8fd8891331d02033f9 /FL/Fl_Help_View.H | |
| parent | aa88761194fd54f89d66ddf8fd90865d7ebae805 (diff) | |
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
Diffstat (limited to 'FL/Fl_Help_View.H')
| -rw-r--r-- | FL/Fl_Help_View.H | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/FL/Fl_Help_View.H b/FL/Fl_Help_View.H index b12055e2d..56aaa46aa 100644 --- a/FL/Fl_Help_View.H +++ b/FL/Fl_Help_View.H @@ -1,5 +1,5 @@ // -// "$Id: Fl_Help_View.H,v 1.1.2.12 2003/05/21 16:12:14 easysw Exp $" +// "$Id: Fl_Help_View.H,v 1.1.2.13 2003/06/15 04:47:27 easysw Exp $" // // Help Viewer widget definitions. // @@ -169,6 +169,7 @@ class FL_EXPORT Fl_Help_View : public Fl_Group //// Help viewer widget int load(const char *f); void resize(int,int,int,int); int size() const { return (size_); } + void size(int W, int H) { Fl_Widget::size(W, H); } void textcolor(Fl_Color c) { if (textcolor_ == defcolor_) textcolor_ = c; defcolor_ = c; } Fl_Color textcolor() const { return (defcolor_); } void textfont(uchar f) { textfont_ = f; format(); } @@ -188,5 +189,5 @@ class FL_EXPORT Fl_Help_View : public Fl_Group //// Help viewer widget #endif // !Fl_Help_View_H // -// End of "$Id: Fl_Help_View.H,v 1.1.2.12 2003/05/21 16:12:14 easysw Exp $". +// End of "$Id: Fl_Help_View.H,v 1.1.2.13 2003/06/15 04:47:27 easysw Exp $". // |
