From 7fa017b181fcbbae699cd51e61149bc31ea04b03 Mon Sep 17 00:00:00 2001 From: David Hill Date: Fri, 13 Jul 2012 14:15:09 -0400 Subject: [PATCH 1/1] convert an #if 0'd XGetWMNormalHints to XCB --- spectrwm.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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; -- 1.7.10.4