Fix remove by label
authorChristopher Michael <cpmichael1@comcast.net>
Wed, 28 Dec 2005 17:01:34 +0000 (17:01 +0000)
committerChristopher Michael <cpmichael1@comcast.net>
Wed, 28 Dec 2005 17:01:34 +0000 (17:01 +0000)
SVN revision: 19345

src/bin/e_ilist.c

index e1cbfa2..b7a613c 100644 (file)
@@ -174,10 +174,7 @@ e_ilist_selected_label_get(Evas_Object *obj)
    API_ENTRY return NULL;
    if (!sd->items) return NULL;
    si = evas_list_nth(sd->items, sd->selected);
-   if (si) 
-   {
-    return edje_object_part_text_get(si->base_obj, "label");
-   }
+   if (si) return edje_object_part_text_get(si->base_obj, "label");
    return NULL;
 }