From f3e21ddad24bba301a9749b43645581dee2555fb Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Fri, 13 Jan 2023 21:16:17 +0100 Subject: Fix for "Rename Fl_X* Fl_Window::i private class member" (#223) --- src/Fl_Window.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Fl_Window.cxx') diff --git a/src/Fl_Window.cxx b/src/Fl_Window.cxx index 3a3966132..3f62f01ea 100644 --- a/src/Fl_Window.cxx +++ b/src/Fl_Window.cxx @@ -50,7 +50,7 @@ void Fl_Window::_Fl_Window() { } else { labeltype(FL_NO_LABEL); } - i = 0; + flx_ = 0; xclass_ = 0; iconlabel_ = 0; resizable(0); @@ -482,8 +482,8 @@ void Fl_Window::flush() { if (!shown()) return; make_current(); - fl_clip_region(i->region); - i->region = 0; + fl_clip_region(flx_->region); + flx_->region = 0; draw(); } -- cgit v1.2.3