From 5b84fe46eb9a57c52ddee936c4037529d13d8c5e Mon Sep 17 00:00:00 2001 From: eban Date: Sat, 3 Jul 2004 08:28:05 +0000 Subject: * ext/tk/lib/tkextlib/tkDND.rb: fix syntax error. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6563 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/tk/lib/tkextlib/tkDND.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ext') diff --git a/ext/tk/lib/tkextlib/tkDND.rb b/ext/tk/lib/tkextlib/tkDND.rb index ba5b23b538..260769df7f 100644 --- a/ext/tk/lib/tkextlib/tkDND.rb +++ b/ext/tk/lib/tkextlib/tkDND.rb @@ -17,9 +17,9 @@ module Tk module TkDND dir = File.expand_path(__FILE__).sub(/#{File.extname(__FILE__)}$/, '') - #autoload :DND 'tkextlib/tkDND/tkdnd' - #autoload :Shape 'tkextlib/tkDND/shape' - autoload :DND File.join(dir, 'tkdnd') - autoload :Shape File.join(dir, 'shape') + #autoload :DND, 'tkextlib/tkDND/tkdnd' + #autoload :Shape, 'tkextlib/tkDND/shape' + autoload :DND, File.join(dir, 'tkdnd') + autoload :Shape, File.join(dir, 'shape') end end -- cgit v1.2.3