diff options
author | okan | 2013-07-08 18:19:22 +0000 |
---|---|---|
committer | okan | 2013-07-08 18:19:22 +0000 |
commit | 63e9ed547d2b6c27553b71a57d79d8afce15e2c5 (patch) | |
tree | cfbef2a3adb561b9f40967b03f889f031f4e02cf /mousefunc.c | |
parent | 90507e8e1a2ac93497684c584678e705e658dea7 (diff) | |
download | cwm-63e9ed547d2b6c27553b71a57d79d8afce15e2c5.tar.gz |
move kbfunc and mousefunc closer together
Diffstat (limited to '')
-rw-r--r-- | mousefunc.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mousefunc.c b/mousefunc.c index 1872aef..c44c3fc 100644 --- a/mousefunc.c +++ b/mousefunc.c @@ -16,7 +16,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: mousefunc.c,v 1.53 2013/06/17 17:11:10 okan Exp $ + * $OpenBSD: mousefunc.c,v 1.54 2013/07/08 18:19:22 okan Exp $ */ #include <sys/param.h> @@ -68,7 +68,7 @@ mousefunc_sweep_draw(struct client_ctx *cc) } void -mousefunc_window_resize(struct client_ctx *cc, void *arg) +mousefunc_client_resize(struct client_ctx *cc, void *arg) { XEvent ev; Time ltime = 0; @@ -125,7 +125,7 @@ mousefunc_window_resize(struct client_ctx *cc, void *arg) } void -mousefunc_window_move(struct client_ctx *cc, void *arg) +mousefunc_client_move(struct client_ctx *cc, void *arg) { XEvent ev; Time ltime = 0; @@ -177,26 +177,26 @@ mousefunc_window_move(struct client_ctx *cc, void *arg) } void -mousefunc_window_grouptoggle(struct client_ctx *cc, void *arg) +mousefunc_client_grouptoggle(struct client_ctx *cc, void *arg) { group_sticky_toggle_enter(cc); } void -mousefunc_window_lower(struct client_ctx *cc, void *arg) +mousefunc_client_lower(struct client_ctx *cc, void *arg) { client_ptrsave(cc); client_lower(cc); } void -mousefunc_window_raise(struct client_ctx *cc, void *arg) +mousefunc_client_raise(struct client_ctx *cc, void *arg) { client_raise(cc); } void -mousefunc_window_hide(struct client_ctx *cc, void *arg) +mousefunc_client_hide(struct client_ctx *cc, void *arg) { client_hide(cc); } |