From: Mikael Magnusson Date: Fri, 29 Feb 2008 02:18:12 +0000 (+0100) Subject: Remove an unused variable. X-Git-Tag: release-3.4.7-pre2~9^2~1 X-Git-Url: http://git.openbox.org/?p=mikachu%2Fopenbox.git;a=commitdiff_plain;h=835b2de913cddcf545246d88a8a4e5d7d0028f8a Remove an unused variable. --- diff --git a/openbox/focus_cycle.c b/openbox/focus_cycle.c index 2348f8d..c7fc42e 100644 --- a/openbox/focus_cycle.c +++ b/openbox/focus_cycle.c @@ -73,7 +73,6 @@ ObClient* focus_cycle(gboolean forward, gboolean all_desktops, gboolean showbar, gboolean dialog, gboolean done, gboolean cancel) { - static ObClient *t = NULL; static GList *order = NULL; GList *it, *start, *list; ObClient *ft = NULL; @@ -150,7 +149,6 @@ ObClient* focus_cycle(gboolean forward, gboolean all_desktops, done_cycle: if (done && !cancel) ret = focus_cycle_target; - t = NULL; focus_cycle_target = NULL; g_list_free(order); order = NULL;