From: David Hill Date: Fri, 13 Jul 2012 18:15:09 +0000 (-0400) Subject: convert an #if 0'd XGetWMNormalHints to XCB X-Git-Url: https://jasonwoof.com/gitweb/?a=commitdiff_plain;h=7fa017b181fcbbae699cd51e61149bc31ea04b03;p=spectrwm.git convert an #if 0'd XGetWMNormalHints to XCB --- diff --git a/spectrwm.c b/spectrwm.c index 7fd6790..259f246 100644 --- a/spectrwm.c +++ b/spectrwm.c @@ -7230,9 +7230,10 @@ propertynotify(XEvent *e) switch (ev->atom) { #if 0 - case XA_WM_NORMAL_HINTS: - long mask; - XGetWMNormalHints(display, win->id, &win->sh, &mask); + case XCB_ATOM_WM_NORMAL_HINTS: + xcb_icccm_get_wm_normal_hints(conn, + xcb_iccom_get_wm_normal_hints(conn, win->id), + &win->sh, NULL); warnx("normal hints: flag 0x%x", win->sh.flags); if (win->sh.flags & XCB_SIZE_HINT_P_MIN_SIZE) { WIDTH(win) = win->sh.min_width;