diff options
author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-05 04:19:16 +0000 |
---|---|---|
committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-05 04:19:16 +0000 |
commit | 6aba0f1c5a8e5244241e1ae1ce13a6afc69df4eb (patch) | |
tree | ac6387c357876696a1a0da76109a337511a888fc | |
parent | e000c066188817ec25d0cab9da170e616a07d40b (diff) | |
download | ruby-6aba0f1c5a8e5244241e1ae1ce13a6afc69df4eb.tar.gz ruby-6aba0f1c5a8e5244241e1ae1ce13a6afc69df4eb.tar.xz ruby-6aba0f1c5a8e5244241e1ae1ce13a6afc69df4eb.zip |
* ext/tk/lib/tk/text.rb: bug fix
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7209 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | ext/tk/lib/tk/text.rb | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +Fri Nov 5 13:17:54 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> + + * ext/tk/lib/tk/text.rb: bug fix + Thu Nov 4 19:27:46 2004 NAKAMURA Usaku <usa@ruby-lang.org> * io.c (rb_f_open): fix typo. diff --git a/ext/tk/lib/tk/text.rb b/ext/tk/lib/tk/text.rb index a0af64237..158d5461e 100644 --- a/ext/tk/lib/tk/text.rb +++ b/ext/tk/lib/tk/text.rb @@ -83,8 +83,8 @@ class TkText<TkTextWin end def __destroy_hook__ - TTagID_TBL.delete(@path) - TMarkID_TBL.delete(@path) + TkTextTag::TTagID_TBL.delete(@path) + TkTextTag::TMarkID_TBL.delete(@path) end def create_self(keys) |