From 4e0bb56f210c245e5208ae4ca12e8597b1ff64af Mon Sep 17 00:00:00 2001 From: nagai Date: Wed, 30 Jul 2003 07:15:00 +0000 Subject: * bug fix * fix lack of methods for TkEntry * fix reference of uninitialized variables git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4231 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/tk/lib/tkdialog.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ext/tk/lib/tkdialog.rb') diff --git a/ext/tk/lib/tkdialog.rb b/ext/tk/lib/tkdialog.rb index b15b79421b..febe470376 100644 --- a/ext/tk/lib/tkdialog.rb +++ b/ext/tk/lib/tkdialog.rb @@ -57,6 +57,7 @@ class TkDialog2 < TkWindow @message = message @message_config = message_config + @msgframe_config = msgframe_config @bitmap = bitmap @bitmap_config = message_config @@ -65,10 +66,13 @@ class TkDialog2 < TkWindow @buttons = buttons @button_configs = proc{|num| button_configs(num)} + @btnframe_config = btnframe_config #@config = "puts [winfo children .w0000];" @config = "" + @command = nil + if keys.kind_of? Hash keys = _symbolkey2str(keys) @title = keys['title'] if keys.key? 'title' -- cgit v1.2.1