summaryrefslogtreecommitdiffstats
path: root/lib/efl/elm/elm_multibuttonentry.rb
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-02-28 16:09:49 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2012-02-28 16:09:49 +0100
commitf5be08ea606ad373f3bab8e5a0f258b82a9cf11f (patch)
treea5dee985149c7cdeb799958f99de8a1450d3b92b /lib/efl/elm/elm_multibuttonentry.rb
parent142e64c3cefcd11667adefdc61989536f6a34bd4 (diff)
downloadffi-efl-f5be08ea606ad373f3bab8e5a0f258b82a9cf11f.zip
ffi-efl-f5be08ea606ad373f3bab8e5a0f258b82a9cf11f.tar.gz
lib/efl/elm/elm_*.rb: Native::->Native.
Diffstat (limited to 'lib/efl/elm/elm_multibuttonentry.rb')
-rw-r--r--lib/efl/elm/elm_multibuttonentry.rb18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/efl/elm/elm_multibuttonentry.rb b/lib/efl/elm/elm_multibuttonentry.rb
index b9b4ea2..e72e57e 100644
--- a/lib/efl/elm/elm_multibuttonentry.rb
+++ b/lib/efl/elm/elm_multibuttonentry.rb
@@ -16,39 +16,39 @@ module Efl
search_prefixes 'elm_multibuttonentry_'
#
def item_prepend label, data=nil
- ElmObjectItem.new Native::elm_multibuttonentry_item_prepend @ptr, label, data
+ ElmObjectItem.new Native.elm_multibuttonentry_item_prepend @ptr, label, data
end
#
def item_append label, data=nil
- ElmObjectItem.new Native::elm_multibuttonentry_item_append @ptr, label, data
+ ElmObjectItem.new Native.elm_multibuttonentry_item_append @ptr, label, data
end
#
def item_insert_before before, label, data=nil
- ElmObjectItem.new Native::elm_multibuttonentry_item_insert_before @ptr, before, label, data
+ ElmObjectItem.new Native.elm_multibuttonentry_item_insert_before @ptr, before, label, data
end
#
def item_insert_after after, label, data=nil
- ElmObjectItem.new Native::elm_multibuttonentry_item_insert_after @ptr, after, label, data
+ ElmObjectItem.new Native.elm_multibuttonentry_item_insert_after @ptr, after, label, data
end
#
def first_item_get
- ElmObjectItem.new Native::elm_multibuttonentry_first_item_get @ptr
+ ElmObjectItem.new Native.elm_multibuttonentry_first_item_get @ptr
end
#
def last_item_get
- ElmObjectItem.new Native::elm_multibuttonentry_last_item_get @ptr
+ ElmObjectItem.new Native.elm_multibuttonentry_last_item_get @ptr
end
#
def selected_item_get
- ElmObjectItem.new Native::elm_multibuttonentry_selected_item_get @ptr
+ ElmObjectItem.new Native.elm_multibuttonentry_selected_item_get @ptr
end
#
def item_prev it
- ElmObjectItem.new Native::elm_multibuttonentry_item_prev it
+ ElmObjectItem.new Native.elm_multibuttonentry_item_prev it
end
#
def item_next it
- ElmObjectItem.new Native::elm_multibuttonentry_item_next it
+ ElmObjectItem.new Native.elm_multibuttonentry_item_next it
end
end
#