client: switch to xcb-icccm 0.3.3
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
5536d8e78b
commit
2a2ce6e83e
|
@ -142,7 +142,7 @@ pkg_check_modules(AWESOME_REQUIRED REQUIRED
|
|||
xcb-aux>=0.3.0
|
||||
xcb-atom>=0.3.0
|
||||
xcb-keysyms>=0.3.0
|
||||
xcb-icccm>=0.3.0
|
||||
xcb-icccm>=0.3.3
|
||||
xcb-image>=0.3.0
|
||||
xcb-property>=0.3.0
|
||||
cairo-xcb
|
||||
|
|
4
client.c
4
client.c
|
@ -1649,7 +1649,7 @@ luaA_client_index(lua_State *L)
|
|||
xcb_get_wm_class_unchecked(globalconf.connection, (*c)->win),
|
||||
&hint, NULL))
|
||||
return 0;
|
||||
lua_pushstring(L, hint.class);
|
||||
lua_pushstring(L, hint.class_name);
|
||||
xcb_get_wm_class_reply_wipe(&hint);
|
||||
break;
|
||||
case A_TK_INSTANCE:
|
||||
|
@ -1657,7 +1657,7 @@ luaA_client_index(lua_State *L)
|
|||
xcb_get_wm_class_unchecked(globalconf.connection, (*c)->win),
|
||||
&hint, NULL))
|
||||
return 0;
|
||||
lua_pushstring(L, hint.name);
|
||||
lua_pushstring(L, hint.instance_name);
|
||||
xcb_get_wm_class_reply_wipe(&hint);
|
||||
break;
|
||||
case A_TK_ROLE:
|
||||
|
|
Loading…
Reference in New Issue