diff options
author | Pavel Shlyak <[email protected]> | 2019-08-25 15:09:49 +0300 |
---|---|---|
committer | ZenWalker <[email protected]> | 2019-09-04 01:20:04 +0200 |
commit | a218a544a23469e428a3833dc1177422100f61a9 (patch) | |
tree | 51a2770cde374af3328d88e93c91affd5819a300 /src/core | |
parent | 35af147a9240a0ef4d97f8a8154879f6d46d31f5 (diff) | |
download | marco-a218a544a23469e428a3833dc1177422100f61a9.tar.bz2 marco-a218a544a23469e428a3833dc1177422100f61a9.tar.xz |
window.c: remove unused variable
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/window.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/window.c b/src/core/window.c index fe0a5476..56cec45b 100644 --- a/src/core/window.c +++ b/src/core/window.c @@ -1593,7 +1593,6 @@ idle_calc_showing (gpointer data) GSList *should_show; GSList *should_hide; GSList *unplaced; - GSList *displays; MetaWindow *first_window; guint queue_index = GPOINTER_TO_INT (data); @@ -1619,7 +1618,6 @@ idle_calc_showing (gpointer data) should_show = NULL; should_hide = NULL; unplaced = NULL; - displays = NULL; tmp = copy; while (tmp != NULL) @@ -1728,7 +1726,6 @@ idle_calc_showing (gpointer data) g_slist_free (unplaced); g_slist_free (should_show); g_slist_free (should_hide); - g_slist_free (displays); destroying_windows_disallowed -= 1; |