rename uicb_settrans to uicb_client_settrans

This commit is contained in:
Julien Danjou 2007-11-14 17:52:49 +01:00
parent b594731fc2
commit 8b933e196b
3 changed files with 4 additions and 4 deletions

View File

@ -621,8 +621,8 @@ updatesizehints(Client *c)
* \ingroup ui_callback
*/
void
uicb_settrans(awesome_config *awesomeconf,
const char *arg)
uicb_client_settrans(awesome_config *awesomeconf,
const char *arg)
{
double delta = 100.0, current_opacity = 100.0;
unsigned char *data;

View File

@ -41,7 +41,7 @@ void saveprops(Client *, int);
UICB_PROTO(uicb_client_kill);
UICB_PROTO(uicb_client_moveresize);
UICB_PROTO(uicb_settrans);
UICB_PROTO(uicb_client_settrans);
UICB_PROTO(uicb_setborder);
UICB_PROTO(uicb_swapnext);
UICB_PROTO(uicb_swapprev);

View File

@ -66,7 +66,7 @@ const NameFuncLink UicbList[] = {
/* client.c */
{"client_kill", uicb_client_kill},
{"client_moveresize", uicb_client_moveresize},
{"settrans", uicb_settrans},
{"client_settrans", uicb_client_settrans},
{"setborder", uicb_setborder},
{"swapnext", uicb_swapnext},
{"swapprev", uicb_swapprev},