rename uicb_moveresize to uicb_client_moveresize
This commit is contained in:
parent
c5ee95992c
commit
b594731fc2
4
client.c
4
client.c
|
@ -721,8 +721,8 @@ uicb_swapprev(awesome_config *awesomeconf,
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
uicb_moveresize(awesome_config *awesomeconf,
|
uicb_client_moveresize(awesome_config *awesomeconf,
|
||||||
const char *arg)
|
const char *arg)
|
||||||
{
|
{
|
||||||
int nx, ny, nw, nh, ox, oy, ow, oh;
|
int nx, ny, nw, nh, ox, oy, ow, oh;
|
||||||
char x[8], y[8], w[8], h[8];
|
char x[8], y[8], w[8], h[8];
|
||||||
|
|
2
client.h
2
client.h
|
@ -40,7 +40,7 @@ void updatetitle(Client *);
|
||||||
void saveprops(Client *, int);
|
void saveprops(Client *, int);
|
||||||
|
|
||||||
UICB_PROTO(uicb_client_kill);
|
UICB_PROTO(uicb_client_kill);
|
||||||
UICB_PROTO(uicb_moveresize);
|
UICB_PROTO(uicb_client_moveresize);
|
||||||
UICB_PROTO(uicb_settrans);
|
UICB_PROTO(uicb_settrans);
|
||||||
UICB_PROTO(uicb_setborder);
|
UICB_PROTO(uicb_setborder);
|
||||||
UICB_PROTO(uicb_swapnext);
|
UICB_PROTO(uicb_swapnext);
|
||||||
|
|
2
config.c
2
config.c
|
@ -65,7 +65,7 @@ const NameFuncLink UicbList[] = {
|
||||||
{"exec", uicb_exec},
|
{"exec", uicb_exec},
|
||||||
/* client.c */
|
/* client.c */
|
||||||
{"client_kill", uicb_client_kill},
|
{"client_kill", uicb_client_kill},
|
||||||
{"moveresize", uicb_moveresize},
|
{"client_moveresize", uicb_client_moveresize},
|
||||||
{"settrans", uicb_settrans},
|
{"settrans", uicb_settrans},
|
||||||
{"setborder", uicb_setborder},
|
{"setborder", uicb_setborder},
|
||||||
{"swapnext", uicb_swapnext},
|
{"swapnext", uicb_swapnext},
|
||||||
|
|
Loading…
Reference in New Issue