From 2841e44f4831a42992306625c25cf801e937e743 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 25 Jun 2013 09:12:15 +0100 Subject: [PATCH] move static variable decls to top of e_border --- src/bin/e_border.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/bin/e_border.c b/src/bin/e_border.c index 77787fdc9..b099119a1 100644 --- a/src/bin/e_border.c +++ b/src/bin/e_border.c @@ -229,6 +229,13 @@ static int warp_y[2] = {0}; //{cur,prev} static Ecore_X_Window warp_to_win; static Ecore_Timer *warp_timer = NULL; +static Ecore_X_Window action_input_win = 0; +static E_Border *action_border = NULL; +static Ecore_Event_Handler *action_handler_key = NULL; +static Ecore_Event_Handler *action_handler_mouse = NULL; +static Ecore_Timer *action_timer = NULL; +static Ecore_X_Rectangle action_orig; + EAPI int E_EVENT_BORDER_ADD = 0; EAPI int E_EVENT_BORDER_REMOVE = 0; EAPI int E_EVENT_BORDER_ZONE_SET = 0; @@ -3387,13 +3394,6 @@ e_border_client_list(void) return borders; } -static Ecore_X_Window action_input_win = 0; -static E_Border *action_border = NULL; -static Ecore_Event_Handler *action_handler_key = NULL; -static Ecore_Event_Handler *action_handler_mouse = NULL; -static Ecore_Timer *action_timer = NULL; -static Ecore_X_Rectangle action_orig; - static void _e_border_show(E_Border *bd) {