diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-29 12:01:33 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-29 12:01:33 +0100 |
commit | 8eb12c08d263e4f1ce0cd434d5eebc4c26afe68e (patch) | |
tree | b07b1b724d9638f6c9e82f8a5727d6820d033964 | |
parent | 4ff4320c5dd6b05a3e78b2b020a27143af4c8bc7 (diff) | |
download | ffi-efl-8eb12c08d263e4f1ce0cd434d5eebc4c26afe68e.zip ffi-efl-8eb12c08d263e4f1ce0cd434d5eebc4c26afe68e.tar.gz |
elm_calendar, elm_gengrid: update API
-rw-r--r-- | lib/efl/native/elm/elm_calendar.rb | 8 | ||||
-rw-r--r-- | lib/efl/native/elm/elm_gengrid.rb | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/lib/efl/native/elm/elm_calendar.rb b/lib/efl/native/elm/elm_calendar.rb index 9677040..6c7282e 100644 --- a/lib/efl/native/elm/elm_calendar.rb +++ b/lib/efl/native/elm/elm_calendar.rb @@ -42,10 +42,10 @@ module Efl [ :elm_calendar_min_max_year_set, [ :evas_object, :int, :int ], :void ], # EAPI void elm_calendar_min_max_year_get(const Evas_Object *obj, int *min, int *max); [ :elm_calendar_min_max_year_get, [ :evas_object, :pointer, :pointer ], :void ], - # EAPI void elm_calendar_day_selection_enabled_set(Evas_Object *obj, Eina_Bool enabled); - [ :elm_calendar_day_selection_enabled_set, [ :evas_object, :bool ], :void ], - # EAPI Eina_Bool elm_calendar_day_selection_enabled_get(const Evas_Object *obj); - [ :elm_calendar_day_selection_enabled_get, [ :evas_object ], :bool ], + # EAPI void elm_calendar_day_selection_disabled_set(Evas_Object *obj, Eina_Bool disabled); + [ :elm_calendar_day_selection_disabled_set, [ :evas_object, :bool ], :void ], + # EAPI Eina_Bool elm_calendar_day_selection_disabled_get(const Evas_Object *obj); + [ :elm_calendar_day_selection_disabled_get, [ :evas_object ], :bool ], # EAPI void elm_calendar_selected_time_set(Evas_Object *obj, struct tm *selected_time); [ :elm_calendar_selected_time_set, [ :evas_object, :pointer ], :void ], # EAPI Eina_Bool elm_calendar_selected_time_get(const Evas_Object *obj, struct tm *selected_time); diff --git a/lib/efl/native/elm/elm_gengrid.rb b/lib/efl/native/elm/elm_gengrid.rb index df79e26..5711177 100644 --- a/lib/efl/native/elm/elm_gengrid.rb +++ b/lib/efl/native/elm/elm_gengrid.rb @@ -119,8 +119,8 @@ module Efl [ :elm_gengrid_item_update, [ :elm_object_item ], :void ], # EAPI const Elm_Gengrid_Item_Class *elm_gengrid_item_item_class_get(const Elm_Object_Item *it); [ :elm_gengrid_item_item_class_get, [ :elm_object_item ], :elm_gengrid_item_class ], - # EAPI void elm_gengrid_item_item_class_set(Elm_Object_Item *it, const Elm_Gengrid_Item_Class *gic); - [ :elm_gengrid_item_item_class_set, [ :elm_object_item, :elm_gengrid_item_class ], :void ], + # EAPI void elm_gengrid_item_item_class_update(Elm_Object_Item *it, const Elm_Gengrid_Item_Class *gic); + [ :elm_gengrid_item_item_class_update, [ :elm_object_item, :elm_gengrid_item_class ], :void ], # EAPI void elm_gengrid_item_pos_get(const Elm_Object_Item *it, unsigned int *x, unsigned int *y); [ :elm_gengrid_item_pos_get, [ :elm_object_item, :pointer, :pointer ], :void ], # EAPI void elm_gengrid_item_selected_set(Elm_Object_Item *it, Eina_Bool selected); |