summaryrefslogtreecommitdiffstats
path: root/lib/efl/elm/elm_mirroring.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/efl/elm/elm_mirroring.rb')
-rw-r--r--lib/efl/elm/elm_mirroring.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/efl/elm/elm_mirroring.rb b/lib/efl/elm/elm_mirroring.rb
index e19c3fc..0f05389 100644
--- a/lib/efl/elm/elm_mirroring.rb
+++ b/lib/efl/elm/elm_mirroring.rb
@@ -11,21 +11,21 @@ module Efl
class ElmMirroring
#
def mirrored_get
- Native::elm_object_mirrored_get @ptr
+ Native.elm_object_mirrored_get @ptr
end
alias :mirrored :mirrored_get
#
def mirrored_set mirrored
- Native::elm_object_mirrored_set @ptr, mirrored
+ Native.elm_object_mirrored_set @ptr, mirrored
end
#
def mirrored_automatic_get
- Native::elm_object_mirrored_automatic_get @ptr
+ Native.elm_object_mirrored_automatic_get @ptr
end
alias :mirrored_automatic :mirrored_automatic_get
#
def mirrored_automatic_set auto
- Native::elm_object_mirrored_automatic_set @ptr, auto
+ Native.elm_object_mirrored_automatic_set @ptr, auto
end
#
end