diff options
Diffstat (limited to 'lib/efl/ecore')
-rw-r--r-- | lib/efl/ecore/ecore_evas-ffi.rb | 2 | ||||
-rw-r--r-- | lib/efl/ecore/ecore_input-ffi.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/efl/ecore/ecore_evas-ffi.rb b/lib/efl/ecore/ecore_evas-ffi.rb index 83adb55..948cae7 100644 --- a/lib/efl/ecore/ecore_evas-ffi.rb +++ b/lib/efl/ecore/ecore_evas-ffi.rb @@ -7,7 +7,7 @@ module Efl # module Ecore_evas def self.method_missing m, *args, &block - return Efl::API.send 'ecore_evas_'+m.to_s, *args, &block + return Efl::API.send 'ecore_'+m.to_s, *args, &block end end # diff --git a/lib/efl/ecore/ecore_input-ffi.rb b/lib/efl/ecore/ecore_input-ffi.rb index e80db89..a98e927 100644 --- a/lib/efl/ecore/ecore_input-ffi.rb +++ b/lib/efl/ecore/ecore_input-ffi.rb @@ -7,7 +7,7 @@ module Efl # module EcoreInput def self.method_missing m, *args, &block - return Efl::API.send 'ecore_input_'+m.to_s, *args, &block + return Efl::API.send 'ecore_'+m.to_s, *args, &block end end # |