rename uicb_view to uicb_tag_view

This commit is contained in:
Julien Danjou 2007-11-14 18:05:05 +01:00
parent bfde2f3211
commit 4ca7059efc
4 changed files with 14 additions and 14 deletions

View File

@ -120,7 +120,7 @@ mouse
tag
{
button = "1"
command = "view"
command = "tag_view"
}
tag
{
@ -350,69 +350,69 @@ keys
{
modkey = {"Mod4"}
key = "0"
command = "view"
command = "tag_view"
}
key
{
modkey = {"Mod4"}
key = "1"
command = "view"
command = "tag_view"
arg = "1"
}
key
{
modkey = {"Mod4"}
key = "2"
command = "view"
command = "tag_view"
arg = "2"
}
key
{
modkey = {"Mod4"}
key = "3"
command = "view"
command = "tag_view"
arg = "3"
}
key
{
modkey = {"Mod4"}
key = "4"
command = "view"
command = "tag_view"
arg = "4"
}
key
{
modkey = {"Mod4"}
key = "5"
command = "view"
command = "tag_view"
arg = "5"
}
key
{
modkey = {"Mod4"}
key = "6"
command = "view"
command = "tag_view"
arg = "6"
}
key
{
modkey = {"Mod4"}
key = "7"
command = "view"
command = "tag_view"
arg = "7"
}
key
{
modkey = {"Mod4"}
key = "8"
command = "view"
command = "tag_view"
arg = "8"
}
key
{
modkey = {"Mod4"}
key = "9"
command = "view"
command = "tag_view"
arg = "9"
}
key

View File

@ -75,7 +75,7 @@ const NameFuncLink UicbList[] = {
{"client_togglefloating", uicb_client_togglefloating},
{"tag_toggleview", uicb_tag_toggleview},
{"client_toggletag", uicb_client_toggletag},
{"view", uicb_view},
{"tag_view", uicb_tag_view},
{"view_tag_prev_selected", uicb_tag_prev_selected},
{"view_tag_previous", uicb_tag_viewprev},
{"view_tag_next", uicb_tag_viewnext},

2
tag.c
View File

@ -158,7 +158,7 @@ uicb_tag_toggleview(awesome_config *awesomeconf,
* \ingroup ui_callback
*/
void
uicb_view(awesome_config *awesomeconf,
uicb_tag_view(awesome_config *awesomeconf,
const char *arg)
{
int i;

2
tag.h
View File

@ -34,7 +34,7 @@ UICB_PROTO(uicb_client_tag);
UICB_PROTO(uicb_client_togglefloating);
UICB_PROTO(uicb_client_toggletag);
UICB_PROTO(uicb_tag_toggleview);
UICB_PROTO(uicb_view);
UICB_PROTO(uicb_tag_view);
UICB_PROTO(uicb_tag_prev_selected);
UICB_PROTO(uicb_tag_viewnext);
UICB_PROTO(uicb_tag_viewprev);