[src/lib/Elementary.h.in, src/lib/elm_panes.c] Modifiecation in API name
authorRajeev Ranjan <rajeev.r@samsung.com>
Tue, 5 Oct 2010 06:40:48 +0000 (15:40 +0900)
committerRajeev Ranjan <rajeev.r@samsung.com>
Tue, 5 Oct 2010 06:40:48 +0000 (15:40 +0900)
src/lib/Elementary.h.in
src/lib/elm_panes.c

index 6b6743a..b26df50 100644 (file)
@@ -1673,8 +1673,8 @@ extern "C" {
    EAPI void                  elm_panes_content_left_size_set(Evas_Object *obj, double size);
    EAPI void                  elm_panes_horizontal_set(Evas_Object *obj, Eina_Bool horizontal);
    EAPI Eina_Bool             elm_panes_horizontal_get(const Evas_Object *obj);
-   EAPI void                             elm_panes_fixed_set(Evas_Object *obj, Eina_Bool fixed);
-   EAPI Eina_Bool                elm_panes_fixed_is(const Evas_Object *obj);
+   EAPI void                  elm_panes_fixed_set(Evas_Object *obj, Eina_Bool fixed);
+   EAPI Eina_Bool             elm_panes_fixed_get(const Evas_Object *obj);
 
    typedef enum _Elm_Flip_Mode
      {
index 7fb9b4e..6f63cbd 100644 (file)
@@ -392,7 +392,7 @@ elm_panes_horizontal_set(Evas_Object *obj, Eina_Bool horizontal)
  * @ingroup Panes
  */
 EAPI Eina_Bool 
-elm_panes_horizontal_is(const Evas_Object *obj)
+elm_panes_horizontal_get(const Evas_Object *obj)
 {
    Widget_Data *wd = elm_widget_data_get(obj);
 
@@ -427,7 +427,7 @@ elm_panes_fixed_set(Evas_Object *obj, Eina_Bool fixed)
  * @ingroup Panes
  */
 EAPI Eina_Bool
-elm_panes_fixed_is(const Evas_Object *obj)
+elm_panes_fixed_get(const Evas_Object *obj)
 {
    Widget_Data *wd = elm_widget_data_get(obj);
    return wd->fixed;