From 3f1b6ddc8f219a5d5c313a46fa9fe1e430f062c5 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Wed, 21 May 2014 13:03:39 -0400 Subject: [PATCH] window-x11: Rearrange locals a tiny bit --- src/x11/window-x11.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/x11/window-x11.c b/src/x11/window-x11.c index a4c2249c8..dd0175907 100644 --- a/src/x11/window-x11.c +++ b/src/x11/window-x11.c @@ -1002,6 +1002,7 @@ meta_window_x11_move_resize_internal (MetaWindow *window, { MetaWindowX11 *window_x11 = META_WINDOW_X11 (window); MetaWindowX11Private *priv = meta_window_x11_get_instance_private (window_x11); + MetaFrameBorders borders; int root_x_nw, root_y_nw; int w, h; int client_move_x, client_move_y; @@ -1009,7 +1010,6 @@ meta_window_x11_move_resize_internal (MetaWindow *window, XWindowChanges values; unsigned int mask; gboolean need_configure_notify; - MetaFrameBorders borders; gboolean need_move_client = FALSE; gboolean need_move_frame = FALSE; gboolean need_resize_client = FALSE;