aboutsummaryrefslogtreecommitdiffstats
path: root/client.c
diff options
context:
space:
mode:
authorokan2014-09-15 13:00:49 +0000
committerokan2014-09-15 13:00:49 +0000
commita826ef268d5ad05429f4b269d6961839bae35822 (patch)
tree3d5f980cd888467292cd667225a45bdc48a1d802 /client.c
parent84082493cb81b61f9b42cf9528cfe7e29c6594ad (diff)
downloadcwm-a826ef268d5ad05429f4b269d6961839bae35822.tar.gz
use similiar style for client flags
Diffstat (limited to 'client.c')
-rw-r--r--client.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/client.c b/client.c
index 1f5c0b6..64a7622 100644
--- a/client.c
+++ b/client.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: client.c,v 1.182 2014/09/10 20:30:38 okan Exp $
+ * $OpenBSD: client.c,v 1.183 2014/09/15 13:00:49 okan Exp $
*/
#include <sys/param.h>
@@ -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;
}