summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Fl_x.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Fl_x.cxx b/src/Fl_x.cxx
index 2cc04913c..2c2720033 100644
--- a/src/Fl_x.cxx
+++ b/src/Fl_x.cxx
@@ -2412,7 +2412,7 @@ void Fl_X::make_xid(Fl_Window* win, XVisualInfo *visual, Colormap colormap)
attr.colormap = colormap;
attr.border_pixel = 0;
attr.bit_gravity = 0; // StaticGravity;
- if (win->FL_OVERRIDE()) {
+ if (win->override()) {
attr.override_redirect = 1;
attr.save_under = 1;
mask |= CWOverrideRedirect | CWSaveUnder;
@@ -2613,7 +2613,7 @@ void Fl_X::make_xid(Fl_Window* win, XVisualInfo *visual, Colormap colormap)
void Fl_X11_Window_Driver::sendxjunk() {
Fl_Window *w = pWindow;
- if (w->parent() || w->FL_OVERRIDE()) return; // it's not a window manager window!
+ if (w->parent() || w->override()) return; // it's not a window manager window!
XSizeHints *hints = XAllocSizeHints();
// memset(&hints, 0, sizeof(hints)); jreiser suggestion to fix purify?