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_cursor.cxx | |
| parent | dd6b9b90ee57c8020f308435a213a0d6c6c72501 (diff) | |
Fix for "Rename Fl_X* Fl_Window::i private class member" (#223)
Diffstat (limited to 'src/fl_cursor.cxx')
| -rw-r--r-- | src/fl_cursor.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fl_cursor.cxx b/src/fl_cursor.cxx index 51e57c81b..84ef9ff1e 100644 --- a/src/fl_cursor.cxx +++ b/src/fl_cursor.cxx @@ -126,7 +126,7 @@ void Fl_Window::cursor(Fl_Cursor c) { if (c == FL_CURSOR_DEFAULT) c = cursor_default; - if (!i) + if (!flx_) return; ret = pWindowDriver->set_cursor(c); @@ -163,7 +163,7 @@ void Fl_Window::cursor(const Fl_RGB_Image *image, int hotx, int hoty) { return; } - if (!i) + if (!flx_) return; ret = pWindowDriver->set_cursor(image, hotx, hoty); |
