diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-08-01 09:25:37 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-08-01 09:25:37 +0000 |
| commit | 56160fa00424ee3aecd14b72457ad19d34dc2c26 (patch) | |
| tree | ebd326e315572f9712a37a81ab46c35dea88f1b5 /ext/tk/lib/tktext.rb | |
| parent | 7e74039572825048f021214f746badb938d65694 (diff) | |
| download | ruby-56160fa00424ee3aecd14b72457ad19d34dc2c26.tar.gz ruby-56160fa00424ee3aecd14b72457ad19d34dc2c26.tar.xz ruby-56160fa00424ee3aecd14b72457ad19d34dc2c26.zip | |
matz
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@867 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/lib/tktext.rb')
| -rw-r--r-- | ext/tk/lib/tktext.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/tk/lib/tktext.rb b/ext/tk/lib/tktext.rb index 163583f13..f7b3f84ba 100644 --- a/ext/tk/lib/tktext.rb +++ b/ext/tk/lib/tktext.rb @@ -460,7 +460,7 @@ class TkText<TkTextWin when 'anchor' result.push TkTextMarkAnchor.new(self) else - result.push tk_tcl2rb(val) + result.push tk_tcl2ruby(val) end when 'tagon' if val == 'sel' @@ -470,12 +470,12 @@ class TkText<TkTextWin result.push TkTextTagSel.new(self) end else - result.push tk_tcl2rb val + result.push tk_tcl2ruby(val) end when 'tagoff' - result.push tk_tcl2rb sel + result.push tk_tcl2ruby(sel) when 'window' - result.push tk_tcl2rb val + result.push tk_tcl2ruby(val) end i = idx + 1 end |
