summaryrefslogtreecommitdiff
path: root/FL/Fl_Window.H
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2023-01-13 21:16:17 +0100
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2023-01-13 21:16:17 +0100
commitf3e21ddad24bba301a9749b43645581dee2555fb (patch)
tree33c160da2fe5ea5f2735501e3ac45096321c1ea7 /FL/Fl_Window.H
parentdd6b9b90ee57c8020f308435a213a0d6c6c72501 (diff)
Fix for "Rename Fl_X* Fl_Window::i private class member" (#223)
Diffstat (limited to 'FL/Fl_Window.H')
-rw-r--r--FL/Fl_Window.H4
1 files changed, 2 insertions, 2 deletions
diff --git a/FL/Fl_Window.H b/FL/Fl_Window.H
index f012d59a2..5da402402 100644
--- a/FL/Fl_Window.H
+++ b/FL/Fl_Window.H
@@ -72,7 +72,7 @@ private:
// TODO: it would make sense to merge the use of Fl_X and Fl_Window_Driver, maybe simply by
// TODO: deriving Fl_Window_Driver from Fl_X. However, there are a lot of historic kludges
// TODO: for some platforms around Fl_X.
- Fl_X *i; // points at the system-specific stuff, but exists only after the window is mapped
+ Fl_X *flx_; // points at the system-specific stuff, but exists only after the window is mapped
Fl_Window_Driver *pWindowDriver; // points at the system-specific stuff at window creation time
const char* iconlabel_;
@@ -400,7 +400,7 @@ public:
). You can tell if a window is iconified with (w->shown()
&& !w->visible()).
*/
- int shown() {return i != 0;}
+ int shown() {return flx_ != 0;}
/**
Puts the window on the screen. Usually (on X) this has the side
effect of opening the display.