rename uicb_moveresize to uicb_client_moveresize

This commit is contained in:
Julien Danjou 2007-11-14 17:51:22 +01:00
parent c5ee95992c
commit b594731fc2
3 changed files with 4 additions and 4 deletions

View File

@ -721,7 +721,7 @@ uicb_swapprev(awesome_config *awesomeconf,
}
void
uicb_moveresize(awesome_config *awesomeconf,
uicb_client_moveresize(awesome_config *awesomeconf,
const char *arg)
{
int nx, ny, nw, nh, ox, oy, ow, oh;

View File

@ -40,7 +40,7 @@ void updatetitle(Client *);
void saveprops(Client *, int);
UICB_PROTO(uicb_client_kill);
UICB_PROTO(uicb_moveresize);
UICB_PROTO(uicb_client_moveresize);
UICB_PROTO(uicb_settrans);
UICB_PROTO(uicb_setborder);
UICB_PROTO(uicb_swapnext);

View File

@ -65,7 +65,7 @@ const NameFuncLink UicbList[] = {
{"exec", uicb_exec},
/* client.c */
{"client_kill", uicb_client_kill},
{"moveresize", uicb_moveresize},
{"client_moveresize", uicb_client_moveresize},
{"settrans", uicb_settrans},
{"setborder", uicb_setborder},
{"swapnext", uicb_swapnext},