Re: Bug in SVGOMRect

2003-12-10 Thread Thomas DeWeese
Paul Duffin wrote: The setWidth and setHeight methods on SVGOMRect class do not do anything. public void setWidth( float width ) throws DOMException { this.w = w; ^ should be width } public void setHeight( float height ) throws DOMException { this.h = h; ^ shou

Bug in SVGOMRect

2003-12-10 Thread Paul Duffin
The setWidth and setHeight methods on SVGOMRect class do not do anything. public void setWidth( float width ) throws DOMException { this.w = w; ^ should be width } public void setHeight( float height ) throws DOMException { this.h = h; ^ should be height } ---