rename uicb_killclient to uicb_client_kill

This commit is contained in:
Julien Danjou 2007-11-14 17:50:16 +01:00
parent 3a3f12900a
commit c5ee95992c
4 changed files with 5 additions and 5 deletions

View File

@ -332,7 +332,7 @@ keys
{
modkey = {"Mod4", "Shift"}
key = "c"
command = "killclient"
command = "client_kill"
}
key
{

View File

@ -762,8 +762,8 @@ uicb_moveresize(awesome_config *awesomeconf,
* \ingroup ui_callback
*/
void
uicb_killclient(awesome_config *awesomeconf,
const char *arg __attribute__ ((unused)))
uicb_client_kill(awesome_config *awesomeconf,
const char *arg __attribute__ ((unused)))
{
XEvent ev;
Client *sel = get_current_tag(awesomeconf->tags, awesomeconf->ntags)->client_sel;

View File

@ -39,7 +39,7 @@ inline void updatesizehints(Client *);
void updatetitle(Client *);
void saveprops(Client *, int);
UICB_PROTO(uicb_killclient);
UICB_PROTO(uicb_client_kill);
UICB_PROTO(uicb_moveresize);
UICB_PROTO(uicb_settrans);
UICB_PROTO(uicb_setborder);

View File

@ -64,7 +64,7 @@ const NameFuncLink UicbList[] = {
{"spawn", uicb_spawn},
{"exec", uicb_exec},
/* client.c */
{"killclient", uicb_killclient},
{"client_kill", uicb_client_kill},
{"moveresize", uicb_moveresize},
{"settrans", uicb_settrans},
{"setborder", uicb_setborder},