edje_util.c: remove wrong return
authorjihoon <jihoon>
Mon, 13 Feb 2012 04:19:38 +0000 (04:19 +0000)
committerjihoon <jihoon@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 13 Feb 2012 04:19:38 +0000 (04:19 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@67868 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/edje_util.c

index 5271014..ddd0785 100644 (file)
@@ -1789,7 +1789,7 @@ edje_object_part_text_input_panel_layout_set(const Evas_Object *obj, const char
    if (!rp) return;
    if (rp->part->entry_mode > EDJE_ENTRY_EDIT_MODE_NONE)
      {
-        return _edje_entry_input_panel_layout_set(rp, layout);
+        _edje_entry_input_panel_layout_set(rp, layout);
      }
 }
 
@@ -1855,7 +1855,7 @@ edje_object_part_text_input_panel_enabled_set(const Evas_Object *obj, const char
    if (!rp) return;
    if (rp->part->entry_mode > EDJE_ENTRY_EDIT_MODE_NONE)
      {
-        return _edje_entry_input_panel_enabled_set(rp, enabled);
+        _edje_entry_input_panel_enabled_set(rp, enabled);
      }
 }