summaryrefslogtreecommitdiff
path: root/src/Fl_win32.cxx
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2025-06-19 15:33:38 +0200
committerMatthias Melcher <github@matthiasm.com>2025-06-19 15:33:38 +0200
commiteadea6a992d4e105b3165a22d091c66be374ae99 (patch)
tree6521e659aa52c5f477bfbf81d0f05675fbc641ef /src/Fl_win32.cxx
parent3d13dfefa9d53ef76d77fe57a4d6d51eddc33739 (diff)
Update Fl::await() and friends API and documentation
This creates the base for #1263, but does not fix it yet.
Diffstat (limited to 'src/Fl_win32.cxx')
-rw-r--r--src/Fl_win32.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Fl_win32.cxx b/src/Fl_win32.cxx
index 84cb6649d..a1a9ae39c 100644
--- a/src/Fl_win32.cxx
+++ b/src/Fl_win32.cxx
@@ -350,7 +350,7 @@ MSG fl_msg;
static void process_awake_handler_requests(void) {
Fl_Awake_Handler func;
void *data;
- while (Fl::get_awake_handler_(func, data) == 0) {
+ while (Fl::pop_awake_handler(func, data) == 0) {
func(data);
}
}