diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-01-13 21:16:17 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-01-13 21:16:17 +0100 |
| commit | f3e21ddad24bba301a9749b43645581dee2555fb (patch) | |
| tree | 33c160da2fe5ea5f2735501e3ac45096321c1ea7 /src/Fl_Window.cxx | |
| parent | dd6b9b90ee57c8020f308435a213a0d6c6c72501 (diff) | |
Fix for "Rename Fl_X* Fl_Window::i private class member" (#223)
Diffstat (limited to 'src/Fl_Window.cxx')
| -rw-r--r-- | src/Fl_Window.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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(); } |
