summaryrefslogtreecommitdiffstats
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
commit42278db4eed8f53b7e8b1c03a49345a249d36aee (patch)
tree7e8a5696f405ad0a96be0064d506d2c038a615a9
parentac8a1c931f18b7874453ea0db28c7c4e648371c2 (diff)
downloadruby-42278db4eed8f53b7e8b1c03a49345a249d36aee.tar.gz
ruby-42278db4eed8f53b7e8b1c03a49345a249d36aee.tar.xz
ruby-42278db4eed8f53b7e8b1c03a49345a249d36aee.zip
* ext/tk/lib/tkextlib/tkDND.rb: fix syntax error.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6563 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--ext/tk/lib/tkextlib/tkDND.rb8
2 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 8ab4c6424..ab8bfc62f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sat Jul 3 17:19:44 2004 WATANABE Hirofumi <eban@ruby-lang.org>
+
+ * ext/tk/lib/tkextlib/tkDND.rb: fix syntax error.
+
Thu Jul 1 18:36:08 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tk/lib/tcltklib : bug fix
diff --git a/ext/tk/lib/tkextlib/tkDND.rb b/ext/tk/lib/tkextlib/tkDND.rb
index ba5b23b53..260769df7 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