summaryrefslogtreecommitdiff
path: root/src/Fl_x.cxx
diff options
context:
space:
mode:
authormaxim nikonov <maxim.nikonov@hqo.co>2026-02-06 03:39:53 +0500
committermaxim nikonov <maxim.nikonov@hqo.co>2026-02-06 03:39:53 +0500
commitf93978aba486bf0fea8d9ee857d014a02f3f7d96 (patch)
tree44d4626c2d56666056983d8fedf1b897f4ecf249 /src/Fl_x.cxx
parentddba971ebb304512ba9e0a01b77ec71b59b977b6 (diff)
wi[
Diffstat (limited to 'src/Fl_x.cxx')
-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 7da44acf2..373378e9b 100644
--- a/src/Fl_x.cxx
+++ b/src/Fl_x.cxx
@@ -2628,7 +2628,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->override()) {
+ if (win->override_flag()) {
attr.override_redirect = 1;
attr.save_under = 1;
mask |= CWOverrideRedirect | CWSaveUnder;
@@ -2829,7 +2829,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->override()) return; // it's not a window manager window!
+ if (w->parent() || w->override_flag()) return; // it's not a window manager window!
XSizeHints *hints = XAllocSizeHints();
// memset(&hints, 0, sizeof(hints)); jreiser suggestion to fix purify?