diff options
| -rw-r--r-- | lib/efl/native/elementary.rb | 2 | ||||
| -rw-r--r-- | test/tests/test_bg.rb | 2 | 
2 files changed, 3 insertions, 1 deletions
| diff --git a/lib/efl/native/elementary.rb b/lib/efl/native/elementary.rb index 88a78ef..128f101 100644 --- a/lib/efl/native/elementary.rb +++ b/lib/efl/native/elementary.rb @@ -3032,6 +3032,8 @@ module Efl          [ :elm_diskselector_side_label_length_set, [ :evas_object_p, :int ], :void ],          # EAPI void elm_diskselector_display_item_num_set(Evas_Object *obj, int num);          [ :elm_diskselector_display_item_num_set, [ :evas_object_p, :int ], :void ], +        # EAPI int elm_diskselector_display_item_num_get(const Evas_Object *obj); +        [ :elm_diskselector_display_item_num_get, [ :evas_object_p ], :int ],          # EAPI void elm_diskselector_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce);          [ :elm_diskselector_bounce_set, [ :evas_object_p, :eina_bool, :eina_bool ], :void ],          # EAPI void elm_diskselector_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce); diff --git a/test/tests/test_bg.rb b/test/tests/test_bg.rb index 0591511..363f7db 100644 --- a/test/tests/test_bg.rb +++ b/test/tests/test_bg.rb @@ -145,7 +145,7 @@ module Tests      def self.test_bg_options          TestBg.new 'bg-options', 'Bg Options', :options_bg      end -# +    #  end  #  # EOF | 
