elementary: Declare variables at top of function
authormike_m <mike_m@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 10 Oct 2011 08:33:13 +0000 (08:33 +0000)
committermike_m <mike_m@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 10 Oct 2011 08:33:13 +0000 (08:33 +0000)
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@63951 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

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)