summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2023-08-10 15:16:01 +0200
committerAlbrecht Schlosser <albrechts.fltk@online.de>2023-08-10 15:16:01 +0200
commitdbb77b965740f26558b77a0c71cfbd720312ad72 (patch)
tree8bfc15873eb3658ce9ee07812eaa848e9532b2b4 /src
parent21fdd42838d53a3fbfea3def7b49422b3e8101e0 (diff)
Improve docs of Fl::hide_all_windows()
+ update fluid dependencies No code changes.
Diffstat (limited to 'src')
-rw-r--r--src/Fl.cxx19
1 files changed, 11 insertions, 8 deletions
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 <FL/Fl.H>
#include <FL/platform.H>
@@ -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();