noreply at rubyforge.org
2010-Oct-02 18:19 UTC
[wxruby-development] [ wxruby-Bugs-28614 ] Wx::Rect#== ignores different width
Bugs item #28614, was opened at 2010-10-02 20:19 You can respond by visiting: http://rubyforge.org/tracker/?func=detail&atid=218&aid=28614&group_id=35 Category: Incorrect behavior Group: None Status: Open Resolution: None Priority: 3 Submitted By: Nicolas E. Rabenau (nerab) Assigned to: Nobody (None) Summary: Wx::Rect#== ignores different width Initial Comment: # wxruby (2.0.1 x86-mingw32) require ''wx'' puts Wx::Rect.new(0,0,0,0) == Wx::Rect.new(1,0,0,0) # false puts Wx::Rect.new(0,0,0,0) == Wx::Rect.new(0,1,0,0) # false puts Wx::Rect.new(0,0,0,0) == Wx::Rect.new(0,0,1,0) # true! puts Wx::Rect.new(0,0,0,0) == Wx::Rect.new(0,0,0,1) # false ---------------------------------------------------------------------- You can respond by visiting: http://rubyforge.org/tracker/?func=detail&atid=218&aid=28614&group_id=35