elementary: Declare variables at top of function
authorMike McCormack <mj.mccormack@samsung.com>
Mon, 10 Oct 2011 08:33:13 +0000 (08:33 +0000)
committerMike McCormack <mikem@ring3k.org>
Mon, 10 Oct 2011 08:33:13 +0000 (08:33 +0000)
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>
SVN revision: 63951

src/lib/elm_conform.c

index 6cfe23c..b632175 100644 (file)
@@ -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)