Fix variable declarations for naughty compilers.
authorChristopher Michael <cpmichael1@comcast.net>
Sun, 15 Nov 2009 16:03:52 +0000 (16:03 +0000)
committerChristopher Michael <cpmichael1@comcast.net>
Sun, 15 Nov 2009 16:03:52 +0000 (16:03 +0000)
SVN revision: 43711

src/lib/elm_win.c

index 51a288df6650779d993f0a7e04f076d381b5cb64..66cb21747c5288a32df5f859b55b9fef4519a4a1 100644 (file)
@@ -37,8 +37,8 @@ static void
 _elm_win_resize(Ecore_Evas *ee)
 {
    Evas_Object *obj = ecore_evas_object_associate_get(ee);
-   if (strcmp(elm_widget_type_get(obj), "win")) return;
    Elm_Win *win;
+   if (strcmp(elm_widget_type_get(obj), "win")) return;
    win = elm_widget_data_get(obj);
    if (!win) return;
    if (win->deferred_resize_job) ecore_job_del(win->deferred_resize_job);
@@ -49,8 +49,8 @@ static void
 _elm_win_focus_in(Ecore_Evas *ee)
 {
    Evas_Object *obj = ecore_evas_object_associate_get(ee);
-   if (strcmp(elm_widget_type_get(obj), "win")) return;
    Elm_Win *win;
+   if (strcmp(elm_widget_type_get(obj), "win")) return;
    win = elm_widget_data_get(obj);
    if (!win) return;
    /*NB: Why two different "focus signals" here ??? */
@@ -62,8 +62,8 @@ static void
 _elm_win_focus_out(Ecore_Evas *ee)
 {
    Evas_Object *obj = ecore_evas_object_associate_get(ee);
-   if (strcmp(elm_widget_type_get(obj), "win")) return;
    Elm_Win *win;
+   if (strcmp(elm_widget_type_get(obj), "win")) return;
    win = elm_widget_data_get(obj);
    if (!win) return;
    evas_object_smart_callback_call(win->win_obj, "focus-out", NULL); // FIXME: remove me
@@ -125,8 +125,8 @@ static void
 _elm_win_delete_request(Ecore_Evas *ee)
 {
    Evas_Object *obj = ecore_evas_object_associate_get(ee);
-   if (strcmp(elm_widget_type_get(obj), "win")) return;
    Elm_Win *win;
+   if (strcmp(elm_widget_type_get(obj), "win")) return;
    win = elm_widget_data_get(obj);
    if (!win) return;
    int autodel = win->autodel;
@@ -854,12 +854,11 @@ _sub_del(void *data, Evas_Object *obj, void *event_info)
 EAPI Evas_Object *
 elm_win_inwin_add(Evas_Object *obj)
 {
-   if (strcmp(elm_widget_type_get(obj), "win")) return;
-
    Evas_Object *obj2;
    Widget_Data *wd;
    Elm_Win *win;
 
+   if (strcmp(elm_widget_type_get(obj), "win")) return;
    win = elm_widget_data_get(obj);
    if (!win) return NULL;
    wd = ELM_NEW(Widget_Data);