From 646bd5576497078f327f931ac5b5452d24866d2a Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Sun, 16 Nov 2025 01:58:54 +0100 Subject: Refactor large static class Fl into an expandable namespace Fl (#1325) * Change class Fl into namespace Fl. * Untangle Fl namespace into themed headers. * cut line count of FL/Fl.H in half * FL/core subdirectory now holds short headers grouped by functionality. --- src/Fl_System_Driver.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Fl_System_Driver.cxx') diff --git a/src/Fl_System_Driver.cxx b/src/Fl_System_Driver.cxx index 5a01d6534..a1ae24276 100644 --- a/src/Fl_System_Driver.cxx +++ b/src/Fl_System_Driver.cxx @@ -21,7 +21,7 @@ */ #include "Fl_System_Driver.H" -#include +#include "Fl_Private.H" #include "Fl_Timeout.h" #include #include @@ -357,8 +357,8 @@ double Fl_System_Driver::wait(double time_to_wait) { Fl::do_widget_deletion(); Fl_Timeout::do_timeouts(); - Fl::run_checks(); - Fl::run_idle(); + Fl::Private::run_checks(); + Fl::Private::run_idle(); // The idle function may turn off idle() if *all* idle callbacks // are removed from the callback queue (ring), we can then wait. -- cgit v1.2.3