edje_util.c: sync with open source
authorJihoon Kim <jihoon48.kim@samsung.com>
Thu, 23 Feb 2012 02:49:09 +0000 (11:49 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Thu, 23 Feb 2012 02:50:38 +0000 (11:50 +0900)
Change-Id: I6a85a42579dfacc159890598c35613dfd60c209c

src/lib/Edje.h
src/lib/edje_util.c

index dfbf305..5c69843 100644 (file)
@@ -2902,7 +2902,7 @@ EAPI Ecore_IMF_Context *edje_object_part_text_imf_context_get (const Evas_Object
 EAPI void              *edje_object_part_text_imf_context_get (const Evas_Object *obj, const char *part);
 #endif
 
-/*
+/**
  * @brief Set the layout of the input panel.
  * 
  * The layout of the input panel or virtual keyboard can make it easier or
index c347d06..c45f1a1 100644 (file)
@@ -1903,7 +1903,7 @@ edje_object_part_text_input_panel_layout_set(Evas_Object *obj, const char *part,
    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);
      }
 }
 
@@ -1914,14 +1914,14 @@ edje_object_part_text_input_panel_layout_get(const Evas_Object *obj, const char
    Edje_Real_Part *rp;
 
    ed = _edje_fetch(obj);
-   if ((!ed) || (!part)) return EDJE_INPUT_PANEL_LAYOUT_NORMAL;
+   if ((!ed) || (!part)) return EDJE_INPUT_PANEL_LAYOUT_INVALID;
    rp = _edje_real_part_recursive_get(ed, part);
    if (!rp) return EINA_FALSE;
    if (rp->part->entry_mode > EDJE_ENTRY_EDIT_MODE_NONE)
      {
         return _edje_entry_input_panel_layout_get(rp);
      }
-   return EDJE_INPUT_PANEL_LAYOUT_NORMAL;
+   return EDJE_INPUT_PANEL_LAYOUT_INVALID;
 }
 
 EAPI void
@@ -2002,7 +2002,7 @@ edje_object_part_text_input_panel_enabled_set(Evas_Object *obj, const char *part
    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);
      }
 }