rename uicb_swap{prev,next} to uicb_client_swap{prev,next}

This commit is contained in:
Julien Danjou 2007-11-14 17:54:22 +01:00
parent 8b933e196b
commit 455ef2e1d7
4 changed files with 10 additions and 10 deletions

View File

@ -230,13 +230,13 @@ keys
{ {
modkey = {"Mod4", "Shift"} modkey = {"Mod4", "Shift"}
key = "j" key = "j"
command = "swapnext" command = "client_swapnext"
} }
key key
{ {
modkey = {"Mod4", "Shift"} modkey = {"Mod4", "Shift"}
key = "k" key = "k"
command = "swapprev" command = "client_swapprev"
} }
key key
{ {

View File

@ -683,8 +683,8 @@ uicb_setborder(awesome_config *awesomeconf,
} }
void void
uicb_swapnext(awesome_config *awesomeconf, uicb_client_swapnext(awesome_config *awesomeconf,
const char *arg __attribute__ ((unused))) const char *arg __attribute__ ((unused)))
{ {
Client *next, *sel = get_current_tag(awesomeconf->tags, awesomeconf->ntags)->client_sel; Client *next, *sel = get_current_tag(awesomeconf->tags, awesomeconf->ntags)->client_sel;
@ -702,8 +702,8 @@ uicb_swapnext(awesome_config *awesomeconf,
} }
void void
uicb_swapprev(awesome_config *awesomeconf, uicb_client_swapprev(awesome_config *awesomeconf,
const char *arg __attribute__ ((unused))) const char *arg __attribute__ ((unused)))
{ {
Client *prev, *sel = get_current_tag(awesomeconf->tags, awesomeconf->ntags)->client_sel; Client *prev, *sel = get_current_tag(awesomeconf->tags, awesomeconf->ntags)->client_sel;

View File

@ -43,8 +43,8 @@ UICB_PROTO(uicb_client_kill);
UICB_PROTO(uicb_client_moveresize); UICB_PROTO(uicb_client_moveresize);
UICB_PROTO(uicb_client_settrans); UICB_PROTO(uicb_client_settrans);
UICB_PROTO(uicb_setborder); UICB_PROTO(uicb_setborder);
UICB_PROTO(uicb_swapnext); UICB_PROTO(uicb_client_swapnext);
UICB_PROTO(uicb_swapprev); UICB_PROTO(uicb_client_swapprev);
#endif #endif
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99

View File

@ -68,8 +68,8 @@ const NameFuncLink UicbList[] = {
{"client_moveresize", uicb_client_moveresize}, {"client_moveresize", uicb_client_moveresize},
{"client_settrans", uicb_client_settrans}, {"client_settrans", uicb_client_settrans},
{"setborder", uicb_setborder}, {"setborder", uicb_setborder},
{"swapnext", uicb_swapnext}, {"client_swapnext", uicb_client_swapnext},
{"swapprev", uicb_swapprev}, {"client_swapprev", uicb_client_swapprev},
/* tag.c */ /* tag.c */
{"tag", uicb_tag}, {"tag", uicb_tag},
{"togglefloating", uicb_togglefloating}, {"togglefloating", uicb_togglefloating},