diff options
Diffstat (limited to 'lib/efl/elm/elm_flipselector.rb')
-rw-r--r-- | lib/efl/elm/elm_flipselector.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/efl/elm/elm_flipselector.rb b/lib/efl/elm/elm_flipselector.rb index ef64578..0db2677 100644 --- a/lib/efl/elm/elm_flipselector.rb +++ b/lib/efl/elm/elm_flipselector.rb @@ -16,35 +16,35 @@ module Efl search_prefixes 'elm_flipselector_' # def item_append label, cb=nil, data=nil - ElmObjectItem.new Native::elm_flipselector_item_append @ptr, label, cb, data + ElmObjectItem.new Native.elm_flipselector_item_append @ptr, label, cb, data end # def item_prepend label, cb=nil, data=nil - ElmObjectItem.new Native::elm_flipselector_item_prepend @ptr, label, cb, data + ElmObjectItem.new Native.elm_flipselector_item_prepend @ptr, label, cb, data end # def first_item_get - ElmObjectItem.new Native::elm_flipselector_first_item_get @ptr + ElmObjectItem.new Native.elm_flipselector_first_item_get @ptr end alias :first_item :first_item_get # def last_item_get - ElmObjectItem.new Native::elm_flipselector_last_item_get @ptr + ElmObjectItem.new Native.elm_flipselector_last_item_get @ptr end alias :last_item :last_item_get # def selected_item_get - ElmObjectItem.new Native::elm_flipselector_selected_item_get @ptr + ElmObjectItem.new Native.elm_flipselector_selected_item_get @ptr end alias :selected_item :selected_item_get # def item_prev_get it - ElmObjectItem.new Native::elm_flipselector_item_prev_get it + ElmObjectItem.new Native.elm_flipselector_item_prev_get it end alias :item_prev :item_prev_get # def item_next_get it - ElmObjectItem.new Native::elm_flipselector_item_next_get it + ElmObjectItem.new Native.elm_flipselector_item_next_get it end alias :item_next :item_next_get # |