rename uicb_toggleview to uicb_tag_toggleview

This commit is contained in:
Julien Danjou 2007-11-14 18:01:46 +01:00
parent f4390bfc3e
commit 10391f3190
4 changed files with 15 additions and 15 deletions

View File

@ -131,7 +131,7 @@ mouse
tag
{
button = "3"
command = "toggleview"
command = "tag_toggleview"
}
tag
{
@ -419,69 +419,69 @@ keys
{
modkey = {"Mod4", "Control"}
key = "0"
command = "toggleview"
command = "tag_toggleview"
}
key
{
modkey = {"Mod4", "Control"}
key = "1"
command = "toggleview"
command = "tag_toggleview"
arg = "1"
}
key
{
modkey = {"Mod4", "Control"}
key = "2"
command = "toggleview"
command = "tag_toggleview"
arg = "2"
}
key
{
modkey = {"Mod4", "Control"}
key = "3"
command = "toggleview"
command = "tag_toggleview"
arg = "3"
}
key
{
modkey = {"Mod4", "Control"}
key = "4"
command = "toggleview"
command = "tag_toggleview"
arg = "4"
}
key
{
modkey = {"Mod4", "Control"}
key = "5"
command = "toggleview"
command = "tag_toggleview"
arg = "5"
}
key
{
modkey = {"Mod4", "Control"}
key = "6"
command = "toggleview"
command = "tag_toggleview"
arg = "6"
}
key
{
modkey = {"Mod4", "Control"}
key = "7"
command = "toggleview"
command = "tag_toggleview"
arg = "7"
}
key
{
modkey = {"Mod4", "Control"}
key = "8"
command = "toggleview"
command = "tag_toggleview"
arg = "8"
}
key
{
modkey = {"Mod4", "Control"}
key = "9"
command = "toggleview"
command = "tag_toggleview"
arg = "9"
}
key

View File

@ -73,7 +73,7 @@ const NameFuncLink UicbList[] = {
/* tag.c */
{"client_tag", uicb_client_tag},
{"client_togglefloating", uicb_client_togglefloating},
{"toggleview", uicb_toggleview},
{"tag_toggleview", uicb_tag_toggleview},
{"toggletag", uicb_toggletag},
{"view", uicb_view},
{"view_tag_prev_selected", uicb_tag_prev_selected},

2
tag.c
View File

@ -137,7 +137,7 @@ uicb_toggletag(awesome_config *awesomeconf,
* \ingroup ui_callback
*/
void
uicb_toggleview(awesome_config *awesomeconf,
uicb_tag_toggleview(awesome_config *awesomeconf,
const char *arg)
{
unsigned int i;

2
tag.h
View File

@ -33,7 +33,7 @@ void tag_client_with_current_selected(Client *, awesome_config *);
UICB_PROTO(uicb_client_tag);
UICB_PROTO(uicb_client_togglefloating);
UICB_PROTO(uicb_toggletag);
UICB_PROTO(uicb_toggleview);
UICB_PROTO(uicb_tag_toggleview);
UICB_PROTO(uicb_view);
UICB_PROTO(uicb_tag_prev_selected);
UICB_PROTO(uicb_tag_viewnext);