diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-11-28 23:11:27 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-11-28 23:11:27 +0100 |
commit | 7ad1aad37ba538a6ea59a3731716f8b9726cdccf (patch) | |
tree | ee83e9c919170eaa5df6b22098a5c4247ec2e4f3 /lib | |
parent | b97387123d72d7373ba0a1cbc8f2b344074aa306 (diff) | |
download | ffi-efl-7ad1aad37ba538a6ea59a3731716f8b9726cdccf.zip ffi-efl-7ad1aad37ba538a6ea59a3731716f8b9726cdccf.tar.gz |
uncomment inwin_add in elm_win now that elm_inwin is there
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efl/elm/elm_win.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/efl/elm/elm_win.rb b/lib/efl/elm/elm_win.rb index daac677..00f2c29 100644 --- a/lib/efl/elm/elm_win.rb +++ b/lib/efl/elm/elm_win.rb @@ -15,9 +15,9 @@ module Efl def initialize parent, title, type=:elm_win_basic, &block super Native.method(:elm_win_add), parent, title, type, &block end -# def inwin_add -# ElmInWin.new @ptr -# end + def inwin_add + ElmInWin.new @ptr + end def screen_position_get x = FFI::MemoryPointer.new :int y = FFI::MemoryPointer.new :int |