[前][次][番号順一覧][スレッド一覧]

ruby-changes:12484

From: nagai <ko1@a...>
Date: Sat, 18 Jul 2009 07:57:27 +0900 (JST)
Subject: [ruby-changes:12484] Ruby:r24184 (trunk): * ext/tk/lib/tk.rb: fail to create a widget object for an unknown wiget path.

nagai	2009-07-18 07:57:10 +0900 (Sat, 18 Jul 2009)

  New Revision: 24184

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=24184

  Log:
    * ext/tk/lib/tk.rb: fail to create a widget object for an unknown wiget path.

  Modified files:
    trunk/ChangeLog
    trunk/ext/tk/lib/tk.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 24183)
+++ ChangeLog	(revision 24184)
@@ -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().
Index: ext/tk/lib/tk.rb
===================================================================
--- ext/tk/lib/tk.rb	(revision 24183)
+++ ext/tk/lib/tk.rb	(revision 24184)
@@ -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
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]