pkt1583 / gwt-ext

Automatically exported from code.google.com/p/gwt-ext
0 stars 0 forks source link

com.gwtext.client.core.Margins wrong doc for constructor #425

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Hello.
My layout showed up all switched, and I just realized that the
documentation is wrong on the constructor of com.gwtext.client.core.Margins

    /**
     * Create a new Margins instance.
     *
     * @param left   the left margin
     * @param top    the top margin
     * @param right  the right margin
     * @param bottom the bottom margin
     */
    public Margins(int top, int left, int right, int bottom) {

it should be:

     * @param top    the top margin
     * @param left   the left margin
     * @param right  the right margin
     * @param bottom the bottom margin

It took me a little to discover, thinking that was a IE bug... lol

Original issue reported on code.google.com by mihai.ile@gmail.com on 30 Sep 2008 at 2:54

GoogleCodeExporter commented 8 years ago

Original comment by sanjiv.j...@gmail.com on 9 Oct 2008 at 9:22

GoogleCodeExporter commented 8 years ago
Fixed as described above!

Original comment by mlim1...@gmail.com on 20 Oct 2008 at 6:41