From dbb77b965740f26558b77a0c71cfbd720312ad72 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Thu, 10 Aug 2023 15:16:01 +0200 Subject: Improve docs of Fl::hide_all_windows() + update fluid dependencies No code changes. --- src/Fl.cxx | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'src') diff --git a/src/Fl.cxx b/src/Fl.cxx index 429c5c74a..c08eb4930 100644 --- a/src/Fl.cxx +++ b/src/Fl.cxx @@ -14,9 +14,9 @@ // https://www.fltk.org/bugs.php // -/** \file - Implementation of the member functions of class Fl. - */ +/** \file src/Fl.cxx + Implementation of the member functions of class Fl. +*/ #include #include @@ -672,11 +672,14 @@ int Fl::ready() return system_driver()->ready(); } -/** Hide all visible window to make FLTK leav Fl::run(). - Fl:run() will run as long as there are visible windows. Call hide_all_windows() - will hide all windows, effectively terminating the Fl::run() loop. - \see Fl::run() - */ +/** Hide all visible windows to make FLTK leave Fl::run(). + + Fl:run() will run as long as there are visible windows. + Call Fl::hide_all_windows() to hide (close) all currently shown + (visible) windows, effectively terminating the Fl::run() loop. + \see Fl::run() + \since 1.4.0 +*/ void Fl::hide_all_windows() { while (Fl::first_window()) { Fl::first_window()->hide(); -- cgit v1.2.3