From 5b0987bb287300230e1ea9f0dc930a598f06fb72 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Wed, 14 Nov 2007 17:56:16 +0100 Subject: [PATCH] rename uicb_tag to uicb_client_tag --- awesomerc | 20 ++++++++++---------- config.c | 2 +- tag.c | 4 ++-- tag.h | 2 +- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/awesomerc b/awesomerc index 4f843598..ca0894a7 100644 --- a/awesomerc +++ b/awesomerc @@ -488,69 +488,69 @@ keys { modkey = {"Mod4", "Shift"} key = "0" - command = "tag" + command = "tag_client" } key { modkey = {"Mod4", "Shift"} key = "1" - command = "tag" + command = "client_tag" arg = "1" } key { modkey = {"Mod4", "Shift"} key = "2" - command = "tag" + command = "client_tag" arg = "2" } key { modkey = {"Mod4", "Shift"} key = "3" - command = "tag" + command = "client_tag" arg = "3" } key { modkey = {"Mod4", "Shift"} key = "4" - command = "tag" + command = "client_tag" arg = "4" } key { modkey = {"Mod4", "Shift"} key = "5" - command = "tag" + command = "client_tag" arg = "5" } key { modkey = {"Mod4", "Shift"} key = "6" - command = "tag" + command = "client_tag" arg = "6" } key { modkey = {"Mod4", "Shift"} key = "7" - command = "tag" + command = "client_tag" arg = "7" } key { modkey = {"Mod4", "Shift"} key = "8" - command = "tag" + command = "client_tag" arg = "8" } key { modkey = {"Mod4", "Shift"} key = "9" - command = "tag" + command = "client_tag" arg = "9" } key diff --git a/config.c b/config.c index 908c5ee4..5ed29ebb 100644 --- a/config.c +++ b/config.c @@ -71,7 +71,7 @@ const NameFuncLink UicbList[] = { {"client_swapnext", uicb_client_swapnext}, {"client_swapprev", uicb_client_swapprev}, /* tag.c */ - {"tag", uicb_tag}, + {"client_tag", uicb_client_tag}, {"togglefloating", uicb_togglefloating}, {"toggleview", uicb_toggleview}, {"toggletag", uicb_toggletag}, diff --git a/tag.c b/tag.c index 8525bf88..49fcab21 100644 --- a/tag.c +++ b/tag.c @@ -64,8 +64,8 @@ tag_client_with_current_selected(Client *c, awesome_config *awesomeconf) * \ingroup ui_callback */ void -uicb_tag(awesome_config *awesomeconf, - const char *arg) +uicb_client_tag(awesome_config *awesomeconf, + const char *arg) { int i; Client *sel = get_current_tag(awesomeconf->tags, awesomeconf->ntags)->client_sel; diff --git a/tag.h b/tag.h index 14bc2a8e..9ec33cd1 100644 --- a/tag.h +++ b/tag.h @@ -30,7 +30,7 @@ Bool isvisible(Client *, int, Tag *, int); 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_toggletag); UICB_PROTO(uicb_toggleview);