diff options
| author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-07-08 16:50:07 +0000 |
|---|---|---|
| committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-07-08 16:50:07 +0000 |
| commit | f8b4ca3c66280f1a4616c788f394e778b0befb09 (patch) | |
| tree | 1dfea1caef689bef9a36345bd72000ccd3eb58f8 /ext/tk/lib/tk.rb | |
| parent | c14d5e4b717d8ea083c00a4b599b5b175b9faea0 (diff) | |
| download | ruby-f8b4ca3c66280f1a4616c788f394e778b0befb09.tar.gz ruby-f8b4ca3c66280f1a4616c788f394e778b0befb09.tar.xz ruby-f8b4ca3c66280f1a4616c788f394e778b0befb09.zip | |
* ext/tk/lib : bug fix
* ext/tk/lib/tkextlib/itcl : add [incr Tcl] support
* ext/tk/lib/tkextlib/itk : add [incr Tk] support
* ext/tk/lib/tkextlib/iwidgets : midway point of [incr Widgets] support
* ext/tk/sample/tkextlib/iwidgets : very simple examples of [incr Widgets]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6602 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/lib/tk.rb')
| -rw-r--r-- | ext/tk/lib/tk.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb index 720f2060d..cae832fc0 100644 --- a/ext/tk/lib/tk.rb +++ b/ext/tk/lib/tk.rb @@ -3104,6 +3104,7 @@ class TkObject<TkKernel end end +=begin def tk_trace_variable(v) unless v.kind_of?(TkVariable) fail(ArgumentError, "type error (#{v.class}); must be TkVariable object") @@ -3111,9 +3112,10 @@ class TkObject<TkKernel v end private :tk_trace_variable +=end def destroy - tk_call 'trace', 'vdelete', @tk_vn, 'w', @var_id if @var_id + #tk_call 'trace', 'vdelete', @tk_vn, 'w', @var_id if @var_id end end |
