diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2019-05-09 10:49:03 +0200 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2019-05-09 10:49:03 +0200 |
| commit | 874ccfe645f09dc90b2d8825ada95e1965714f21 (patch) | |
| tree | ff4e4fe15d50f4a1acd240ce56c413330c32143a | |
| parent | 467e2166810afbff9cde7fcbc692a18151044b38 (diff) | |
Fix Doxygen doc of Fl_Window::border(int) and border()
| -rw-r--r-- | FL/Fl_Window.H | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/FL/Fl_Window.H b/FL/Fl_Window.H index eacea6f94..24191c9db 100644 --- a/FL/Fl_Window.H +++ b/FL/Fl_Window.H @@ -187,12 +187,9 @@ public: parameters after the resize request. */ virtual void resize(int X,int Y,int W,int H); - /** - Sets whether or not the window manager border is around the - window. The default value is true. void border(int) can be - used to turn the border on and off. <I>Under most X window - managers this does not work after show() has been called, - although SGI's 4DWM does work.</I> + /** Sets whether or not the window manager border is around the window. + The default value is true. <I>With some X window + managers, this does not work after show() has been called.</I> */ void border(int b); /** @@ -200,7 +197,7 @@ public: off. It only works before show() is called. */ void clear_border() {set_flag(NOBORDER);} - /** See void Fl_Window::border(int) */ + /** Returns whether the window possesses a border */ unsigned int border() const {return !(flags() & NOBORDER);} /** Activates the flags NOBORDER|FL_OVERRIDE */ void set_override() {set_flag(NOBORDER|OVERRIDE);} |
