mirror of
https://github.com/ruby/ruby.git
synced 2025-09-17 17:43:59 +02:00
* ext/tk/tkutil/tkutil.c: fix SEGV on TkUtil::CallbackSubst._setup_subst_table.
* ext/tk/lib/tk.rb: [POTENTIAL INCOMPATIBLE] return NoMethodError for TkWindow#to_ary and to_str. * ext/tk/lib/tkextlib/tcllib/plotchart.rb: wrong arguments. * ext/tk/sampel/tkballoonhelp.rb: fail to support TkEntry widgets. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@26532 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c0497c5b43
commit
36f70bd423
5 changed files with 49 additions and 16 deletions
|
@ -145,8 +145,8 @@ module Tk::Tcllib::Plotchart
|
|||
list(tk_call_without_enc('::Plotchart::coordsToPixel', w.path, x, y))
|
||||
end
|
||||
|
||||
def self.determine_scale(w, xmax, ymax)
|
||||
tk_call_without_enc('::Plotchart::determineScale', w.path, xmax, ymax)
|
||||
def self.determine_scale(*args) # (xmin, xmax, inverted=false)
|
||||
tk_call_without_enc('::Plotchart::determineScale', *args)
|
||||
end
|
||||
|
||||
def self.set_zoom_pan(w)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue