mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
ffcedd7950
commit
5b84fe46eb
2 changed files with 8 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue