From 874ccfe645f09dc90b2d8825ada95e1965714f21 Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Thu, 9 May 2019 10:49:03 +0200 Subject: Fix Doxygen doc of Fl_Window::border(int) and border() --- FL/Fl_Window.H | 11 ++++------- 1 file 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. Under most X window - managers this does not work after show() has been called, - although SGI's 4DWM does work. + /** Sets whether or not the window manager border is around the window. + The default value is true. With some X window + managers, this does not work after show() has been called. */ 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);} -- cgit v1.2.3