summaryrefslogtreecommitdiff
path: root/ext/tk/lib/tk/radiobutton.rb
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-06 03:44:00 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-06 03:44:00 +0000
commit58d86a203544ebe3ba795867534c93f52b22c2d4 (patch)
treef85db3e7d924e7892c5221dc7e56d6330eb22034 /ext/tk/lib/tk/radiobutton.rb
parent3c3f54c7a36813a51ceef9db7f79f9a6122455c6 (diff)
* ext/tk/lib/{tk.rb,tk/itemconfig.rb}: configure creates
TkVariable if key name is 'variable' or 'textvariable' by default. [ruby-dev:26749] * ext/tk/lib/tk/{label,radiobutton}.rb: removed its own {variable,textvariable} function. * ext/tk/lib/tk/variable.rb: retains backward conpatibility. (written by Hidetoshi NAGAI) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8933 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/lib/tk/radiobutton.rb')
-rw-r--r--ext/tk/lib/tk/radiobutton.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/tk/lib/tk/radiobutton.rb b/ext/tk/lib/tk/radiobutton.rb
index 5649a5c447..6f7a5f60a0 100644
--- a/ext/tk/lib/tk/radiobutton.rb
+++ b/ext/tk/lib/tk/radiobutton.rb
@@ -25,9 +25,6 @@ class TkRadioButton<TkButton
tk_send_without_enc('select')
self
end
- def variable(v)
- configure 'variable', tk_trace_variable(v)
- end
def get_value
var = tk_send_without_enc('cget', '-variable')