summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authornagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-05 04:19:16 +0000
committernagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-05 04:19:16 +0000
commit6aba0f1c5a8e5244241e1ae1ce13a6afc69df4eb (patch)
treeac6387c357876696a1a0da76109a337511a888fc /ext
parente000c066188817ec25d0cab9da170e616a07d40b (diff)
downloadruby-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
Diffstat (limited to 'ext')
-rw-r--r--ext/tk/lib/tk/text.rb4
1 files changed, 2 insertions, 2 deletions
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)