summary refs log tree commit diff
path: root/client.c
diff options
context:
space:
mode:
authorokan <okan>2009-05-18 00:23:35 +0000
committerokan <okan>2009-05-18 00:23:35 +0000
commit2c29a1de65d9b1a752e1090ab3192ed5edf7afc8 (patch)
treeb289639f27fe3db961b9ca077e86008b3d14fedf /client.c
parentd2cfeb40b4bba4914b72f743b4b316e31560c17b (diff)
downloadcwm-2c29a1de65d9b1a752e1090ab3192ed5edf7afc8.tar.gz
cwm-2c29a1de65d9b1a752e1090ab3192ed5edf7afc8.tar.xz
cwm-2c29a1de65d9b1a752e1090ab3192ed5edf7afc8.zip
nuke the leading underscore notation for local static functions - there
are far better ways to know.

"go for it" oga@
Diffstat (limited to 'client.c')
-rw-r--r--client.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/client.c b/client.c
index be4e379..b96ce02 100644
--- a/client.c
+++ b/client.c
@@ -21,7 +21,7 @@
 #include "headers.h"
 #include "calmwm.h"
 
-static int		 _client_inbound(struct client_ctx *, int, int);
+static int		 client_inbound(struct client_ctx *, int, int);
 
 static char		 emptystring[] = "";
 struct client_ctx	*_curcc = NULL;
@@ -368,7 +368,7 @@ client_ptrsave(struct client_ctx *cc)
 	int	 x, y;
 
 	xu_ptr_getpos(cc->win, &x, &y);
-	if (_client_inbound(cc, x, y)) {
+	if (client_inbound(cc, x, y)) {
 		cc->ptr.x = x;
 		cc->ptr.y = y;
 	}
@@ -704,7 +704,7 @@ client_freehints(struct client_ctx *cc)
 }
 
 static int
-_client_inbound(struct client_ctx *cc, int x, int y)
+client_inbound(struct client_ctx *cc, int x, int y)
 {
 	return (x < cc->geom.width && x >= 0 &&
 	    y < cc->geom.height && y >= 0);