summaryrefslogtreecommitdiffstats
path: root/lib/efl/elm/elm_menu.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/efl/elm/elm_menu.rb')
-rw-r--r--lib/efl/elm/elm_menu.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/efl/elm/elm_menu.rb b/lib/efl/elm/elm_menu.rb
index f285011..a148143 100644
--- a/lib/efl/elm/elm_menu.rb
+++ b/lib/efl/elm/elm_menu.rb
@@ -16,35 +16,35 @@ module Efl
search_prefixes 'elm_menu_'
#
def item_add parent, icon=nil, label=nil, cb=nil, data=nil
- ElmObjectItem.new Native::elm_menu_item_add @ptr, parent, icon, label, cb, data
+ ElmObjectItem.new Native.elm_menu_item_add @ptr, parent, icon, label, cb, data
end
#
def item_add_object parent, subobj, cb=nil, data=nil
- ElmObjectItem.new Native::elm_menu_item_add_object @ptr, parent, subobj, cb, data
+ ElmObjectItem.new Native.elm_menu_item_add_object @ptr, parent, subobj, cb, data
end
#
def item_separator_add parent
- ElmObjectItem.new Native::elm_menu_item_separator_add @ptr, parent
+ ElmObjectItem.new Native.elm_menu_item_separator_add @ptr, parent
end
#
def selected_item_get
- ElmObjectItem.new Native::elm_menu_selected_item_get @ptr
+ ElmObjectItem.new Native.elm_menu_selected_item_get @ptr
end
#
def last_item_get
- ElmObjectItem.new Native::elm_menu_last_item_get @ptr
+ ElmObjectItem.new Native.elm_menu_last_item_get @ptr
end
#
def first_item_get
- ElmObjectItem.new Native::elm_menu_first_item_get @ptr
+ ElmObjectItem.new Native.elm_menu_first_item_get @ptr
end
#
def item_next_get it
- ElmObjectItem.new Native::elm_menu_item_next_get it
+ ElmObjectItem.new Native.elm_menu_item_next_get it
end
#
def item_prev_get it
- ElmObjectItem.new Native::elm_menu_item_prev_get it
+ ElmObjectItem.new Native.elm_menu_item_prev_get it
end
#
end