rename uicb_tag to uicb_client_tag

This commit is contained in:
Julien Danjou 2007-11-14 17:56:16 +01:00
parent 455ef2e1d7
commit 5b0987bb28
4 changed files with 14 additions and 14 deletions

View File

@ -488,69 +488,69 @@ keys
{ {
modkey = {"Mod4", "Shift"} modkey = {"Mod4", "Shift"}
key = "0" key = "0"
command = "tag" command = "tag_client"
} }
key key
{ {
modkey = {"Mod4", "Shift"} modkey = {"Mod4", "Shift"}
key = "1" key = "1"
command = "tag" command = "client_tag"
arg = "1" arg = "1"
} }
key key
{ {
modkey = {"Mod4", "Shift"} modkey = {"Mod4", "Shift"}
key = "2" key = "2"
command = "tag" command = "client_tag"
arg = "2" arg = "2"
} }
key key
{ {
modkey = {"Mod4", "Shift"} modkey = {"Mod4", "Shift"}
key = "3" key = "3"
command = "tag" command = "client_tag"
arg = "3" arg = "3"
} }
key key
{ {
modkey = {"Mod4", "Shift"} modkey = {"Mod4", "Shift"}
key = "4" key = "4"
command = "tag" command = "client_tag"
arg = "4" arg = "4"
} }
key key
{ {
modkey = {"Mod4", "Shift"} modkey = {"Mod4", "Shift"}
key = "5" key = "5"
command = "tag" command = "client_tag"
arg = "5" arg = "5"
} }
key key
{ {
modkey = {"Mod4", "Shift"} modkey = {"Mod4", "Shift"}
key = "6" key = "6"
command = "tag" command = "client_tag"
arg = "6" arg = "6"
} }
key key
{ {
modkey = {"Mod4", "Shift"} modkey = {"Mod4", "Shift"}
key = "7" key = "7"
command = "tag" command = "client_tag"
arg = "7" arg = "7"
} }
key key
{ {
modkey = {"Mod4", "Shift"} modkey = {"Mod4", "Shift"}
key = "8" key = "8"
command = "tag" command = "client_tag"
arg = "8" arg = "8"
} }
key key
{ {
modkey = {"Mod4", "Shift"} modkey = {"Mod4", "Shift"}
key = "9" key = "9"
command = "tag" command = "client_tag"
arg = "9" arg = "9"
} }
key key

View File

@ -71,7 +71,7 @@ const NameFuncLink UicbList[] = {
{"client_swapnext", uicb_client_swapnext}, {"client_swapnext", uicb_client_swapnext},
{"client_swapprev", uicb_client_swapprev}, {"client_swapprev", uicb_client_swapprev},
/* tag.c */ /* tag.c */
{"tag", uicb_tag}, {"client_tag", uicb_client_tag},
{"togglefloating", uicb_togglefloating}, {"togglefloating", uicb_togglefloating},
{"toggleview", uicb_toggleview}, {"toggleview", uicb_toggleview},
{"toggletag", uicb_toggletag}, {"toggletag", uicb_toggletag},

4
tag.c
View File

@ -64,8 +64,8 @@ tag_client_with_current_selected(Client *c, awesome_config *awesomeconf)
* \ingroup ui_callback * \ingroup ui_callback
*/ */
void void
uicb_tag(awesome_config *awesomeconf, uicb_client_tag(awesome_config *awesomeconf,
const char *arg) const char *arg)
{ {
int i; int i;
Client *sel = get_current_tag(awesomeconf->tags, awesomeconf->ntags)->client_sel; Client *sel = get_current_tag(awesomeconf->tags, awesomeconf->ntags)->client_sel;

2
tag.h
View File

@ -30,7 +30,7 @@
Bool isvisible(Client *, int, Tag *, int); Bool isvisible(Client *, int, Tag *, int);
void tag_client_with_current_selected(Client *, awesome_config *); void tag_client_with_current_selected(Client *, awesome_config *);
UICB_PROTO(uicb_tag); UICB_PROTO(uicb_client_tag);
UICB_PROTO(uicb_togglefloating); UICB_PROTO(uicb_togglefloating);
UICB_PROTO(uicb_toggletag); UICB_PROTO(uicb_toggletag);
UICB_PROTO(uicb_toggleview); UICB_PROTO(uicb_toggleview);