client: switch to xcb-icccm 0.3.3

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-01-31 16:03:06 +01:00
parent 5536d8e78b
commit 2a2ce6e83e
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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: