diff options
Diffstat (limited to 'lib/e17/evas.rb')
-rw-r--r-- | lib/e17/evas.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/e17/evas.rb b/lib/e17/evas.rb index 07c5924..1b54742 100644 --- a/lib/e17/evas.rb +++ b/lib/e17/evas.rb @@ -15,7 +15,7 @@ module E17 # callback :evas_async_events_put_cb, [:pointer, :int, :pointer], :void # - @fcts = [ + fcts = [ # http://docs.enlightenment.org/auto/evas/group__Evas__Group.html [ :evas_init, [], :int], [ :evas_shutdown, [], :int], @@ -25,9 +25,9 @@ module E17 [ :evas_async_events_put, [:pointer, :int, :pointer, :evas_async_events_put_cb], :bool], ] # - attach_fcts + attach_fcts fcts # - create_aliases 'evas_'.length + create_aliases 'evas_'.length, fcts # end end |