1
0
Fork 0

window: Remove unused fields

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3584>
This commit is contained in:
Bilal Elmoussaoui 2024-02-14 14:52:57 +01:00 committed by Marge Bot
parent 09fc3e966a
commit bf5f597141
2 changed files with 0 additions and 4 deletions

View file

@ -344,7 +344,6 @@ struct _MetaWindow
} current;
} placement;
guint unmanage_idle_id;
guint close_dialog_timeout_id;
pid_t client_pid;
@ -398,7 +397,6 @@ struct _MetaWindow
/* Minimize is the state controlled by the minimize button */
guint minimized : 1;
guint tab_unminimized : 1;
/* Whether the window is mapped; actual server-side state
* see also unmaps_pending

View file

@ -1046,7 +1046,6 @@ meta_window_constructed (GObject *object)
window->tile_hfraction = -1.;
window->initially_iconic = FALSE;
window->minimized = FALSE;
window->tab_unminimized = FALSE;
window->iconic = FALSE;
window->known_to_compositor = FALSE;
window->visible_to_compositor = FALSE;
@ -1398,7 +1397,6 @@ meta_window_unmanage (MetaWindow *window,
window->unmanaging = TRUE;
g_clear_handle_id (&priv->suspend_timoeut_id, g_source_remove);
g_clear_handle_id (&window->unmanage_idle_id, g_source_remove);
g_clear_handle_id (&window->close_dialog_timeout_id, g_source_remove);
g_signal_emit (window, window_signals[UNMANAGING], 0);