From b0f125a664f85020c0293147976915e32f3eabd6 Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Wed, 15 Sep 2010 21:25:54 +0200 Subject: [PATCH] ewmh: Use the libxcb define WINDOW is a deprecated define which will be removed. We should be using XCB_ATOM_WINDOW instead. This is a follow-up to 5d0a81c8bf4881d4. Signed-off-by: Uli Schlachter --- ewmh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ewmh.c b/ewmh.c index b258e7eee..ab9b78c21 100644 --- a/ewmh.c +++ b/ewmh.c @@ -118,7 +118,7 @@ ewmh_update_net_client_list(lua_State *L) xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE, globalconf.screen->root, - _NET_CLIENT_LIST, WINDOW, 32, n, wins); + _NET_CLIENT_LIST, XCB_ATOM_WINDOW, 32, n, wins); return 0; }