rename setlayout to tag_setlayout

This commit is contained in:
Julien Danjou 2007-11-14 18:19:00 +01:00
parent 7c533b8b40
commit 938850a487
4 changed files with 5 additions and 5 deletions

View File

@ -198,14 +198,14 @@ keys
{
modkey = {"Mod4"}
key = "space"
command = "setlayout"
command = "tag_setlayout"
arg = "+1"
}
key
{
modkey = {"Mod4", "Shift"}
key = "space"
command = "setlayout"
command = "tag_setlayout"
arg = "-1"
}
key

View File

@ -80,7 +80,7 @@ const NameFuncLink UicbList[] = {
{"tag_view_prev", uicb_tag_viewprev},
{"tag_view_next", uicb_tag_viewnext},
/* layout.c */
{"setlayout", uicb_setlayout},
{"tag_setlayout", uicb_tag_setlayout},
{"client_focusnext", uicb_client_focusnext},
{"client_focusprev", uicb_client_focusprev},
{"client_togglemax", uicb_client_togglemax},

View File

@ -197,7 +197,7 @@ saveawesomeprops(awesome_config *awesomeconf)
}
void
uicb_setlayout(awesome_config * awesomeconf,
uicb_tag_setlayout(awesome_config * awesomeconf,
const char *arg)
{
int i, j;

View File

@ -35,7 +35,7 @@ void saveawesomeprops(awesome_config *);
UICB_PROTO(uicb_client_focusnext);
UICB_PROTO(uicb_client_focusprev);
UICB_PROTO(uicb_setlayout);
UICB_PROTO(uicb_tag_setlayout);
UICB_PROTO(uicb_client_togglemax);
UICB_PROTO(uicb_client_toggleverticalmax);
UICB_PROTO(uicb_client_togglehorizontalmax);