summary refs log tree commit diff
diff options
context:
space:
mode:
authorokan <okan>2014-09-15 13:00:49 +0000
committerokan <okan>2014-09-15 13:00:49 +0000
commit4b6dc963983906e9a2866565da003840037dff23 (patch)
treed754dc30697e8292bbed8eedf6c5c6fa1aed1901
parent26b95de0194865a3638689d48e61221f90b9b73b (diff)
downloadcwm-4b6dc963983906e9a2866565da003840037dff23.tar.gz
cwm-4b6dc963983906e9a2866565da003840037dff23.tar.xz
cwm-4b6dc963983906e9a2866565da003840037dff23.zip
use similiar style for client flags
-rw-r--r--client.c8
-rw-r--r--search.c2
-rw-r--r--xevents.c2
-rw-r--r--xutil.c2
4 files changed, 7 insertions, 7 deletions
diff --git a/client.c b/client.c
index f1dfce5..6545c4e 100644
--- a/client.c
+++ b/client.c
@@ -187,7 +187,7 @@ client_setactive(struct client_ctx *cc)
 	XInstallColormap(X_Dpy, cc->colormap);
 
 	if ((cc->flags & CLIENT_INPUT) ||
-	    ((cc->flags & CLIENT_WM_TAKE_FOCUS) == 0)) {
+	    (!(cc->flags & CLIENT_WM_TAKE_FOCUS))) {
 		XSetInputFocus(X_Dpy, cc->win,
 		    RevertToPointerRoot, CurrentTime);
 	}
@@ -260,7 +260,7 @@ client_fullscreen(struct client_ctx *cc)
 	    !(cc->flags & CLIENT_FULLSCREEN))
 		return;
 
-	if ((cc->flags & CLIENT_FULLSCREEN)) {
+	if (cc->flags & CLIENT_FULLSCREEN) {
 		cc->bwidth = Conf.bwidth;
 		cc->geom = cc->fullgeom;
 		cc->flags &= ~(CLIENT_FULLSCREEN | CLIENT_FREEZE);
@@ -297,12 +297,12 @@ client_maximize(struct client_ctx *cc)
 		goto resize;
 	}
 
-	if ((cc->flags & CLIENT_VMAXIMIZED) == 0) {
+	if (!(cc->flags & CLIENT_VMAXIMIZED)) {
 		cc->savegeom.h = cc->geom.h;
 		cc->savegeom.y = cc->geom.y;
 	}
 
-	if ((cc->flags & CLIENT_HMAXIMIZED) == 0) {
+	if (!(cc->flags & CLIENT_HMAXIMIZED)) {
 		cc->savegeom.w = cc->geom.w;
 		cc->savegeom.x = cc->geom.x;
 	}
diff --git a/search.c b/search.c
index adb2f60..f0b22ce 100644
--- a/search.c
+++ b/search.c
@@ -102,7 +102,7 @@ search_match_client(struct menu_q *menuq, struct menu_q *resultq, char *search)
 			tier++;
 
 		/* Clients that are hidden get ranked one up. */
-		if (cc->flags & CLIENT_HIDDEN && tier > 0)
+		if ((cc->flags & CLIENT_HIDDEN) && (tier > 0))
 			tier--;
 
 		assert(tier < nitems(tierp));
diff --git a/xevents.c b/xevents.c
index 4520d3c..e294c61 100644
--- a/xevents.c
+++ b/xevents.c
@@ -82,7 +82,7 @@ xev_handle_maprequest(XEvent *ee)
 	if ((cc = client_find(e->window)) == NULL)
 		cc = client_init(e->window, NULL);
 
-	if ((cc != NULL) && ((cc->flags & CLIENT_IGNORE) == 0))
+	if ((cc != NULL) && (!(cc->flags & CLIENT_IGNORE)))
 		client_ptrwarp(cc);
 }
 
diff --git a/xutil.c b/xutil.c
index 199119f..0e3d9e4 100644
--- a/xutil.c
+++ b/xutil.c
@@ -393,7 +393,7 @@ xu_ewmh_handle_net_wm_state_msg(struct client_ctx *cc, int action,
 			continue;
 		switch (action) {
 		case _NET_WM_STATE_ADD:
-			if ((cc->flags & handlers[i].property) == 0)
+			if (!(cc->flags & handlers[i].property))
 				handlers[i].toggle(cc);
 			break;
 		case _NET_WM_STATE_REMOVE: