summaryrefslogtreecommitdiff
path: root/ext/tk/lib/tkextlib
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-03 08:28:05 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-03 08:28:05 +0000
commit3c7b5a0f33fef89e6008c7e49e61014b6b61db34 (patch)
treecbc8062edf1e33b79e08a18f8d58a0e50c04b779 /ext/tk/lib/tkextlib
parent7800d8ad76bfda9884f5127c576ba08b1fe82583 (diff)
* ext/tk/lib/tkextlib/tkDND.rb: fix syntax error.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6563 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/lib/tkextlib')
-rw-r--r--ext/tk/lib/tkextlib/tkDND.rb8
1 files changed, 4 insertions, 4 deletions
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