summaryrefslogtreecommitdiffstats
path: root/lib/efl/elementary/elementary-ffi.rb
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-04-20 17:43:48 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2011-04-20 17:43:48 +0200
commit6865df2bd776a80afc485e23b223ac1dac289b86 (patch)
tree7ec0c5a714eb0ed184cf96fe4521d05cea2d3fa6 /lib/efl/elementary/elementary-ffi.rb
parent1e52dc26575a472fd108e187bda2cd2447a387cc (diff)
downloadffi-efl-6865df2bd776a80afc485e23b223ac1dac289b86.zip
ffi-efl-6865df2bd776a80afc485e23b223ac1dac289b86.tar.gz
add elementary ffi + quick and dirty test window
Diffstat (limited to 'lib/efl/elementary/elementary-ffi.rb')
-rw-r--r--lib/efl/elementary/elementary-ffi.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/efl/elementary/elementary-ffi.rb b/lib/efl/elementary/elementary-ffi.rb
index 5257487..987a155 100644
--- a/lib/efl/elementary/elementary-ffi.rb
+++ b/lib/efl/elementary/elementary-ffi.rb
@@ -5,9 +5,9 @@ require 'efl/ffi'
#
module Efl
#
- module Elementary
+ module Elm
def self.method_missing m, *args, &block
- return Efl::API.send 'elementary_'+m.to_s, *args, &block
+ return Efl::API.send 'elm_'+m.to_s, *args, &block
end
end
#