ruby-changes:12485
From: nagai <ko1@a...>
Date: Sat, 18 Jul 2009 07:57:39 +0900 (JST)
Subject: [ruby-changes:12485] Ruby:r24185 (ruby_1_8): * ext/tk/lib/tk.rb: fail to create a widget object for an unknown wiget path.
nagai 2009-07-18 07:57:19 +0900 (Sat, 18 Jul 2009) New Revision: 24185 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=24185 Log: * ext/tk/lib/tk.rb: fail to create a widget object for an unknown wiget path. Modified files: branches/ruby_1_8/ChangeLog branches/ruby_1_8/ext/tk/lib/tk.rb Index: ruby_1_8/ext/tk/lib/tk.rb =================================================================== --- ruby_1_8/ext/tk/lib/tk.rb (revision 24184) +++ ruby_1_8/ext/tk/lib/tk.rb (revision 24185) @@ -119,7 +119,7 @@ classname_def = '' else # ruby_class == nil if Tk.const_defined?(tk_class) - mod.const_get(tk_class) # auto_load + Tk.const_get(tk_class) # auto_load ruby_class = WidgetClassNames[tk_class] end Index: ruby_1_8/ChangeLog =================================================================== --- ruby_1_8/ChangeLog (revision 24184) +++ ruby_1_8/ChangeLog (revision 24185) @@ -1,3 +1,8 @@ +Sat Jul 18 07:56:00 2009 Hidetoshi NAGAI <nagai@a...> + + * ext/tk/lib/tk.rb: fail to create a widget object for an unknown + wiget path. + Sat Jul 18 07:06:31 2009 Hidetoshi NAGAI <nagai@a...> * ext/tk/lib/tk.rb,ext/tk/lib/tk/grid.rb: Bug fix on grid_slaves(). -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/