diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-28 16:09:49 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-28 16:09:49 +0100 |
commit | f5be08ea606ad373f3bab8e5a0f258b82a9cf11f (patch) | |
tree | a5dee985149c7cdeb799958f99de8a1450d3b92b /lib/efl/elm/elm_flipselector.rb | |
parent | 142e64c3cefcd11667adefdc61989536f6a34bd4 (diff) | |
download | ffi-efl-f5be08ea606ad373f3bab8e5a0f258b82a9cf11f.zip ffi-efl-f5be08ea606ad373f3bab8e5a0f258b82a9cf11f.tar.gz |
lib/efl/elm/elm_*.rb: Native::->Native.
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 # |