[mutter] screen: Remove a bunch of screen checks
- From: Jasper St. Pierre <jstpierre src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [mutter] screen: Remove a bunch of screen checks
- Date: Fri, 15 Aug 2014 23:52:59 +0000 (UTC)
commit 06d55bf019a0dcfe7306b3cab0840e4411bbe328
Author: Jasper St. Pierre <jstpierre mecheye net>
Date: Fri Aug 15 19:43:08 2014 -0400
screen: Remove a bunch of screen checks
Now that we only manage one screen, this isn't necessary anymore.
src/core/screen.c | 32 +++++++++++---------------------
src/core/stack.c | 3 +--
src/core/window.c | 3 +--
3 files changed, 13 insertions(+), 25 deletions(-)
---
diff --git a/src/core/screen.c b/src/core/screen.c
index d0318dc..6050b38 100644
--- a/src/core/screen.c
+++ b/src/core/screen.c
@@ -1022,9 +1022,7 @@ meta_screen_foreach_window (MetaScreen *screen,
{
MetaWindow *window = tmp->data;
- if (META_IS_WINDOW (window) &&
- window->screen == screen &&
- !window->override_redirect)
+ if (META_IS_WINDOW (window) && !window->override_redirect)
(* func) (screen, window, data);
}
@@ -2098,16 +2096,13 @@ set_work_area_hint (MetaScreen *screen)
{
MetaWorkspace *workspace = tmp_list->data;
- if (workspace->screen == screen)
- {
- meta_workspace_get_work_area_all_monitors (workspace, &area);
- tmp[0] = area.x;
- tmp[1] = area.y;
- tmp[2] = area.width;
- tmp[3] = area.height;
+ meta_workspace_get_work_area_all_monitors (workspace, &area);
+ tmp[0] = area.x;
+ tmp[1] = area.y;
+ tmp[2] = area.width;
+ tmp[3] = area.height;
- tmp += 4;
- }
+ tmp += 4;
tmp_list = tmp_list->next;
}
@@ -2501,8 +2496,7 @@ on_monitors_changed (MetaMonitorManager *manager,
{
MetaWindow *window = tmp->data;
- if (window->screen == screen)
- meta_window_update_for_monitors_changed (window);
+ meta_window_update_for_monitors_changed (window);
}
g_slist_free (windows);
@@ -2544,8 +2538,7 @@ queue_windows_showing (MetaScreen *screen)
{
MetaWindow *w = tmp->data;
- if (w->screen == screen)
- meta_window_queue (w, META_QUEUE_CALC_SHOWING);
+ meta_window_queue (w, META_QUEUE_CALC_SHOWING);
tmp = tmp->next;
}
@@ -2567,9 +2560,7 @@ meta_screen_minimize_all_on_active_workspace_except (MetaScreen *screen,
{
MetaWindow *w = tmp->data;
- if (w->screen == screen &&
- w->has_minimize_func &&
- w != keep)
+ if (w->has_minimize_func && w != keep)
meta_window_minimize (w);
tmp = tmp->next;
@@ -2597,8 +2588,7 @@ meta_screen_show_desktop (MetaScreen *screen,
{
MetaWindow *w = windows->data;
- if (w->screen == screen &&
- w->type == META_WINDOW_DESKTOP)
+ if (w->type == META_WINDOW_DESKTOP)
{
meta_window_focus (w, timestamp);
break;
diff --git a/src/core/stack.c b/src/core/stack.c
index 0234b47..4fccf37 100644
--- a/src/core/stack.c
+++ b/src/core/stack.c
@@ -639,8 +639,7 @@ create_constraints (Constraint **constraints,
parent = w->transient_for;
- if (parent && WINDOW_IN_STACK (parent) &&
- parent->screen == w->screen)
+ if (parent && WINDOW_IN_STACK (parent))
{
meta_topic (META_DEBUG_STACK, "Constraining %s above %s due to transiency\n",
w->desc, parent->desc);
diff --git a/src/core/window.c b/src/core/window.c
index 9aa2508..e85eb25 100644
--- a/src/core/window.c
+++ b/src/core/window.c
@@ -1488,8 +1488,7 @@ gboolean
meta_window_located_on_workspace (MetaWindow *window,
MetaWorkspace *workspace)
{
- return (window->on_all_workspaces && window->screen == workspace->screen) ||
- (window->workspace == workspace);
+ return (window->on_all_workspaces) || (window->workspace == workspace);
}
static gboolean
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]