diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-28 15:50:56 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-28 15:50:56 +0100 |
commit | f69142368d77631621c23e3c0bea201c027f9e53 (patch) | |
tree | a5b5599d2823bc3f0f6ee2348188d765d4e08bf8 | |
parent | e1bcbdf778f9981a05f9c808d49477e8a4500e91 (diff) | |
download | ffi-efl-f69142368d77631621c23e3c0bea201c027f9e53.zip ffi-efl-f69142368d77631621c23e3c0bea201c027f9e53.tar.gz |
tols/genruby: ElmFonts, ElmRoute -> fix requires
-rw-r--r-- | lib/efl/native/elm/elm_fonts.rb | 1 | ||||
-rw-r--r-- | lib/efl/native/elm/elm_route.rb | 1 | ||||
-rwxr-xr-x | tools/genruby.rb | 4 |
3 files changed, 4 insertions, 2 deletions
diff --git a/lib/efl/native/elm/elm_fonts.rb b/lib/efl/native/elm/elm_fonts.rb index 1c5e985..14c7123 100644 --- a/lib/efl/native/elm/elm_fonts.rb +++ b/lib/efl/native/elm/elm_fonts.rb @@ -2,6 +2,7 @@ # -*- coding: UTF-8 -*- # require 'efl/native' +require 'efl/native/eina_hash' require 'efl/native/elementary' # module Efl diff --git a/lib/efl/native/elm/elm_route.rb b/lib/efl/native/elm/elm_route.rb index 706675c..8558d79 100644 --- a/lib/efl/native/elm/elm_route.rb +++ b/lib/efl/native/elm/elm_route.rb @@ -2,6 +2,7 @@ # -*- coding: UTF-8 -*- # require 'efl/native' +require 'efl/native/emap' require 'efl/native/elementary' # module Efl diff --git a/tools/genruby.rb b/tools/genruby.rb index 7c7e60e..f24e6d6 100755 --- a/tools/genruby.rb +++ b/tools/genruby.rb @@ -397,7 +397,7 @@ libs << elm_h('elm_diskselector.h', 'ElmDiskSelector', ["#{NATIVE}/elementary"," libs << elm_h('elm_flip.h', 'ElmFlip') libs << elm_h('elm_flipselector.h', 'ElmFlipSelector') libs << elm_h('elm_focus.h', 'ElmFocus') -libs << elm_h('elm_fonts.h', 'ElmFonts') +libs << elm_h('elm_fonts.h', 'ElmFonts', ["#{NATIVE}/eina_hash","#{NATIVE}/elementary"]) libs << elm_h('elm_frame.h', 'ElmFrame') #libs << elm_h('elm_gengrid.h', 'ElmGenGrid') libs << elm_h('elm_genlist.h', 'ElmGenList', ["#{NATIVE}/elementary","#{NATIVE}/elm/elm_list","#{NATIVE}/elm/elm_scroller"]) @@ -424,7 +424,7 @@ libs << elm_h('elm_photo.h', 'ElmPhoto') libs << elm_h('elm_plug.h', 'ElmPlug') libs << elm_h('elm_progressbar.h', 'ElmProgressBar') libs << elm_h('elm_radio.h', 'ElmRadio') -libs << elm_h('elm_route.h', 'ElmRoute') +libs << elm_h('elm_route.h', 'ElmRoute', ["#{NATIVE}/emap","#{NATIVE}/elementary"]) libs << elm_h('elm_scale.h', 'ElmScale') libs << elm_h('elm_scroll.h', 'ElmScroll') #libs << elm_h('elm_segment_control.h', 'ElmSegmentControl') |