From 895c3848ebcfe1252a87eec88ffc3027a0253e3a Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Wed, 14 Nov 2007 18:14:23 +0100 Subject: [PATCH] rename uicb_*mouse to uicb_client_*mouse --- awesomerc | 4 ++-- config.c | 4 ++-- mouse.c | 4 ++-- mouse.h | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/awesomerc b/awesomerc index 1a013289..999397b7 100644 --- a/awesomerc +++ b/awesomerc @@ -169,7 +169,7 @@ mouse { modkey = {"Mod4"} button = "1" - command = "movemouse" + command = "client_movemouse" } client { @@ -181,7 +181,7 @@ mouse { modkey = {"Mod4"} button = "3" - command = "resizemouse" + command = "client_resizemouse" } } diff --git a/config.c b/config.c index 6917ad21..09a4d52b 100644 --- a/config.c +++ b/config.c @@ -103,8 +103,8 @@ const NameFuncLink UicbList[] = { {"reloadconfig", uicb_reloadconfig}, {"setstatustext", uicb_setstatustext}, /* mouse.c */ - {"movemouse", uicb_movemouse}, - {"resizemouse", uicb_resizemouse}, + {"client_movemouse", uicb_client_movemouse}, + {"client_resizemouse", uicb_client_resizemouse}, {NULL, NULL} }; diff --git a/mouse.c b/mouse.c index 5f3d7c94..20c948ab 100644 --- a/mouse.c +++ b/mouse.c @@ -29,7 +29,7 @@ #include "layouts/floating.h" void -uicb_movemouse(awesome_config *awesomeconf, const char *arg __attribute__ ((unused))) +uicb_client_movemouse(awesome_config *awesomeconf, const char *arg __attribute__ ((unused))) { int x1, y1, ocx, ocy, di, nx, ny; unsigned int dui; @@ -92,7 +92,7 @@ uicb_movemouse(awesome_config *awesomeconf, const char *arg __attribute__ ((unus } void -uicb_resizemouse(awesome_config *awesomeconf, const char *arg __attribute__ ((unused))) +uicb_client_resizemouse(awesome_config *awesomeconf, const char *arg __attribute__ ((unused))) { int ocx, ocy, nw, nh; XEvent ev; diff --git a/mouse.h b/mouse.h index 2a80a493..4da95de1 100644 --- a/mouse.h +++ b/mouse.h @@ -26,8 +26,8 @@ #define MOUSEMASK (BUTTONMASK | PointerMotionMask) -UICB_PROTO(uicb_movemouse); -UICB_PROTO(uicb_resizemouse); +UICB_PROTO(uicb_client_movemouse); +UICB_PROTO(uicb_client_resizemouse); #endif // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99