diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-03-07 10:09:07 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-03-07 10:09:07 +0100 |
commit | 262db7ab0c4c33b74f6bcd2d950d3b5a493f7b83 (patch) | |
tree | ee3a58d18d08d5666de3fbf55f658726e260e991 | |
parent | 23bc746681181a0bd016e212337d7463b402a1f0 (diff) | |
download | ffi-efl-262db7ab0c4c33b74f6bcd2d950d3b5a493f7b83.zip ffi-efl-262db7ab0c4c33b74f6bcd2d950d3b5a493f7b83.tar.gz |
add elm_entry as requirement to elm_popup
-rw-r--r-- | lib/efl/native/elm/elm_popup.rb | 1 | ||||
-rwxr-xr-x | tools/genruby.rb | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lib/efl/native/elm/elm_popup.rb b/lib/efl/native/elm/elm_popup.rb index 39bd621..2803691 100644 --- a/lib/efl/native/elm/elm_popup.rb +++ b/lib/efl/native/elm/elm_popup.rb @@ -3,6 +3,7 @@ # require 'efl/native' require 'efl/native/elementary' +require 'efl/native/elm/elm_entry' # module Efl # diff --git a/tools/genruby.rb b/tools/genruby.rb index 63ede50..4d58ef6 100755 --- a/tools/genruby.rb +++ b/tools/genruby.rb @@ -373,7 +373,7 @@ libs << elm_h('elc_fileselector.h', 'ElmFileSelector') libs << elm_h('elc_hoversel.h', 'ElmHoverSel', ["#{NATIVE}/elementary","#{NATIVE}/elm/elm_icon"]) libs << elm_h('elc_multibuttonentry.h', 'ElmMultiButtonEntry') libs << elm_h('elc_naviframe.h', 'ElmNaviFrame') -libs << elm_h('elc_popup.h', 'ElmPopup') +libs << elm_h('elc_popup.h', 'ElmPopup', ["#{NATIVE}/elementary","#{NATIVE}/elm/elm_entry"]) libs << elm_h('elm_actionslider.h', 'ElmActionSlider') libs << elm_h('elm_app.h', 'ElmApp') libs << elm_h('elm_bg.h', 'ElmBg') |