From 25d7e48077c38e4ae18169dcbd18b869fd179843 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Tue, 17 Jun 2014 11:21:01 -0400 Subject: [PATCH] constraints: Clean up logical operations The logical version of the bitwise XOR operator ^ is !=. I don't know why XOR was even used in the first place. --- src/core/constraints.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/constraints.c b/src/core/constraints.c index 8035ceffb..42204bc94 100644 --- a/src/core/constraints.c +++ b/src/core/constraints.c @@ -588,7 +588,7 @@ update_onscreen_requirements (MetaWindow *window, window->require_fully_onscreen = meta_rectangle_contained_in_region (info->usable_screen_region, &info->current); - if (old ^ window->require_fully_onscreen) + if (old != window->require_fully_onscreen) meta_topic (META_DEBUG_GEOMETRY, "require_fully_onscreen for %s toggled to %s\n", window->desc, @@ -601,7 +601,7 @@ update_onscreen_requirements (MetaWindow *window, window->require_on_single_monitor = meta_rectangle_contained_in_region (info->usable_monitor_region, &info->current); - if (old ^ window->require_on_single_monitor) + if (old != window->require_on_single_monitor) meta_topic (META_DEBUG_GEOMETRY, "require_on_single_monitor for %s toggled to %s\n", window->desc, @@ -620,7 +620,7 @@ update_onscreen_requirements (MetaWindow *window, window->require_titlebar_visible = meta_rectangle_overlaps_with_region (info->usable_screen_region, &titlebar_rect); - if (old ^ window->require_titlebar_visible) + if (old != window->require_titlebar_visible) meta_topic (META_DEBUG_GEOMETRY, "require_titlebar_visible for %s toggled to %s\n", window->desc,