summaryrefslogtreecommitdiffstats
path: root/ext/tk/lib/tk.rb
diff options
context:
space:
mode:
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 e79d97ac8..a71ac7590 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