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 tag
{ {
button = "3" button = "3"
command = "toggleview" command = "tag_toggleview"
} }
tag tag
{ {
@ -419,69 +419,69 @@ keys
{ {
modkey = {"Mod4", "Control"} modkey = {"Mod4", "Control"}
key = "0" key = "0"
command = "toggleview" command = "tag_toggleview"
} }
key key
{ {
modkey = {"Mod4", "Control"} modkey = {"Mod4", "Control"}
key = "1" key = "1"
command = "toggleview" command = "tag_toggleview"
arg = "1" arg = "1"
} }
key key
{ {
modkey = {"Mod4", "Control"} modkey = {"Mod4", "Control"}
key = "2" key = "2"
command = "toggleview" command = "tag_toggleview"
arg = "2" arg = "2"
} }
key key
{ {
modkey = {"Mod4", "Control"} modkey = {"Mod4", "Control"}
key = "3" key = "3"
command = "toggleview" command = "tag_toggleview"
arg = "3" arg = "3"
} }
key key
{ {
modkey = {"Mod4", "Control"} modkey = {"Mod4", "Control"}
key = "4" key = "4"
command = "toggleview" command = "tag_toggleview"
arg = "4" arg = "4"
} }
key key
{ {
modkey = {"Mod4", "Control"} modkey = {"Mod4", "Control"}
key = "5" key = "5"
command = "toggleview" command = "tag_toggleview"
arg = "5" arg = "5"
} }
key key
{ {
modkey = {"Mod4", "Control"} modkey = {"Mod4", "Control"}
key = "6" key = "6"
command = "toggleview" command = "tag_toggleview"
arg = "6" arg = "6"
} }
key key
{ {
modkey = {"Mod4", "Control"} modkey = {"Mod4", "Control"}
key = "7" key = "7"
command = "toggleview" command = "tag_toggleview"
arg = "7" arg = "7"
} }
key key
{ {
modkey = {"Mod4", "Control"} modkey = {"Mod4", "Control"}
key = "8" key = "8"
command = "toggleview" command = "tag_toggleview"
arg = "8" arg = "8"
} }
key key
{ {
modkey = {"Mod4", "Control"} modkey = {"Mod4", "Control"}
key = "9" key = "9"
command = "toggleview" command = "tag_toggleview"
arg = "9" arg = "9"
} }
key key

View File

@ -73,7 +73,7 @@ const NameFuncLink UicbList[] = {
/* tag.c */ /* tag.c */
{"client_tag", uicb_client_tag}, {"client_tag", uicb_client_tag},
{"client_togglefloating", uicb_client_togglefloating}, {"client_togglefloating", uicb_client_togglefloating},
{"toggleview", uicb_toggleview}, {"tag_toggleview", uicb_tag_toggleview},
{"toggletag", uicb_toggletag}, {"toggletag", uicb_toggletag},
{"view", uicb_view}, {"view", uicb_view},
{"view_tag_prev_selected", uicb_tag_prev_selected}, {"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 * \ingroup ui_callback
*/ */
void void
uicb_toggleview(awesome_config *awesomeconf, uicb_tag_toggleview(awesome_config *awesomeconf,
const char *arg) const char *arg)
{ {
unsigned int i; 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_tag);
UICB_PROTO(uicb_client_togglefloating); UICB_PROTO(uicb_client_togglefloating);
UICB_PROTO(uicb_toggletag); UICB_PROTO(uicb_toggletag);
UICB_PROTO(uicb_toggleview); UICB_PROTO(uicb_tag_toggleview);
UICB_PROTO(uicb_view); UICB_PROTO(uicb_view);
UICB_PROTO(uicb_tag_prev_selected); UICB_PROTO(uicb_tag_prev_selected);
UICB_PROTO(uicb_tag_viewnext); UICB_PROTO(uicb_tag_viewnext);