aboutsummaryrefslogtreecommitdiffstats
path: root/ext/tk/lib/tk.rb
diff options
context:
space:
mode:
authornagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-21 04:46:21 +0000
committernagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-21 04:46:21 +0000
commit477f730aa45adfb6867925cc232c22a002a76571 (patch)
tree491b1e28e5bd99ca3e157cb642fecba9c898b1f9 /ext/tk/lib/tk.rb
parentc2e6541a6a4c0f0c37fe6ac3d058c6fbe5e350e2 (diff)
downloadruby-477f730aa45adfb6867925cc232c22a002a76571.tar.gz
bug fix
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4821 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/lib/tk.rb')
-rw-r--r--ext/tk/lib/tk.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb
index e79d97ac8e..a71ac7590e 100644
--- a/ext/tk/lib/tk.rb
+++ b/ext/tk/lib/tk.rb
@@ -5058,7 +5058,7 @@ class TkScale<TkWindow
end
def set(val)
- tk_send "set", val
+ tk_send("set", val)
end
def value
@@ -5066,7 +5066,7 @@ class TkScale<TkWindow
end
def value= (val)
- set val
+ set(val)
end
end