diff options
author | okan | 2009-05-18 00:23:35 +0000 |
---|---|---|
committer | okan | 2009-05-18 00:23:35 +0000 |
commit | 4ef1caacef8237a3f910393b3fa5e7c70cc725fb (patch) | |
tree | 7812c2d8c3222f4b73cdf53074df9068f22cf148 /client.c | |
parent | 025d727caa6afca7b2555eb11b4fdd23afce1139 (diff) | |
download | cwm-4ef1caacef8237a3f910393b3fa5e7c70cc725fb.tar.gz |
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.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -15,13 +15,13 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: client.c,v 1.49 2009/05/17 23:40:57 okan Exp $ + * $Id: client.c,v 1.50 2009/05/18 00:23:35 okan Exp $ */ #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); |