diff options
| author | MatthiasWM <visualc.git@matthiasm.com> | 2025-06-19 17:54:31 +0200 |
|---|---|---|
| committer | MatthiasWM <visualc.git@matthiasm.com> | 2025-06-19 17:54:31 +0200 |
| commit | acd77fa8dc415a32b7a33996b5b01b10a69c2463 (patch) | |
| tree | 730a366e8fdb77ebe7206cfccc9cacb8a42b44f6 /src/Fl_win32.cxx | |
| parent | 2a7b3c81c1d291f3ad42af1c780074e82988367d (diff) | |
Fix Windows compile error from previous commit.
Diffstat (limited to 'src/Fl_win32.cxx')
| -rw-r--r-- | src/Fl_win32.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Fl_win32.cxx b/src/Fl_win32.cxx index a1a9ae39c..b70f45bb2 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::pop_awake_handler(func, data) == 0) { + while (Fl_WinAPI_System_Driver::pop_awake_handler(func, data) == 0) { func(data); } } |
