From cecf1a9d4cf4d03b40c2cd4099e4cb0ff4b830e9 Mon Sep 17 00:00:00 2001 From: mike_m Date: Mon, 10 Oct 2011 08:33:13 +0000 Subject: [PATCH] elementary: Declare variables at top of function Signed-off-by: Mike McCormack git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@63951 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/elm_conform.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/elm_conform.c b/src/lib/elm_conform.c index 6cfe23c..b632175 100644 --- a/src/lib/elm_conform.c +++ b/src/lib/elm_conform.c @@ -188,12 +188,13 @@ static void _conformant_part_sizing_eval(Evas_Object *obj, Conformant_Part_Type part_type) { Ecore_X_Window zone = 0, xwin; + Evas_Object *top; int sx = -1, sy = -1, sw = -1, sh = -1; Widget_Data *wd = elm_widget_data_get(obj); if (!wd) return; - Evas_Object *top = elm_widget_top_get(obj); + top = elm_widget_top_get(obj); #ifdef HAVE_ELEMENTARY_X xwin = elm_win_xwindow_get(top); if (xwin) -- 2.7.4