From b78b2f7f5f24b98640d31bb8ee7b573703e8cc19 Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Thu, 8 Feb 2018 12:47:40 +0000 Subject: Move xxx_also_windowless member functions from Fl_System_Driver to Fl_Screen_Driver. Because these functions are related to Fl_Screen_Driver::wait(double) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12652 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Fl.cxx') diff --git a/src/Fl.cxx b/src/Fl.cxx index 0483c2e6a..d5d6fb8b7 100644 --- a/src/Fl.cxx +++ b/src/Fl.cxx @@ -594,7 +594,7 @@ int Fl::ready() \version 1.4.0 */ int Fl::run_also_windowless() { - return Fl::system_driver()->run_also_windowless(); + return Fl::screen_driver()->run_also_windowless(); } /** Wait for \p delay seconds or until an event occurs, even without any mapped window if the platform supports it. @@ -602,7 +602,7 @@ int Fl::run_also_windowless() { \version 1.4.0 */ int Fl::wait_also_windowless(double delay) { - return Fl::system_driver()->wait_also_windowless(delay); + return Fl::screen_driver()->wait_also_windowless(delay); } int Fl::program_should_quit_ = 0; -- cgit v1.2.3