diff --git a/client.c b/client.c index 3579bcdb..0e7709cd 100644 --- a/client.c +++ b/client.c @@ -721,8 +721,8 @@ uicb_swapprev(awesome_config *awesomeconf, } void -uicb_moveresize(awesome_config *awesomeconf, - const char *arg) +uicb_client_moveresize(awesome_config *awesomeconf, + const char *arg) { int nx, ny, nw, nh, ox, oy, ow, oh; char x[8], y[8], w[8], h[8]; diff --git a/client.h b/client.h index 3fae3bd8..71e7e8ff 100644 --- a/client.h +++ b/client.h @@ -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); diff --git a/config.c b/config.c index a200749e..04718411 100644 --- a/config.c +++ b/config.c @@ -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},