diff options
Diffstat (limited to 'src/Fl_Window_Driver.cxx')
| -rw-r--r-- | src/Fl_Window_Driver.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Fl_Window_Driver.cxx b/src/Fl_Window_Driver.cxx index a1c7ab47c..f31d45ceb 100644 --- a/src/Fl_Window_Driver.cxx +++ b/src/Fl_Window_Driver.cxx @@ -72,8 +72,6 @@ int Fl_Window_Driver::fullscreen_screen_left() {return pWindow->fullscreen_scree int Fl_Window_Driver::fullscreen_screen_right() {return pWindow->fullscreen_screen_right;} void Fl_Window_Driver::current(Fl_Window *c) {pWindow->current_ = c;} -void Fl_Window_Driver::flush_Fl_Window() { pWindow->Fl_Window::flush(); } - /** Draw the window content. @@ -106,11 +104,11 @@ void Fl_Window_Driver::take_focus() { } void Fl_Window_Driver::flush_double() { - flush_Fl_Window(); + pWindow->Fl_Window::flush(); } void Fl_Window_Driver::flush_overlay() { - flush_Fl_Window(); + pWindow->Fl_Window::flush(); } void Fl_Window_Driver::draw_begin() { |
