summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2014-06-17 11:21:01 -0400
committerJasper St. Pierre <jstpierre@mecheye.net>2014-06-17 11:21:25 -0400
commit25d7e48077c38e4ae18169dcbd18b869fd179843 (patch)
tree304d40b680919162ba423fed82b3641aadb5191a
parentb0b8f37240f2a160bc6ad9d17b1fb5416455ca16 (diff)
downloadmutter-25d7e48077c38e4ae18169dcbd18b869fd179843.tar.gz
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.
-rw-r--r--src/core/constraints.c6
1 files 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,