commit-classpath
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Patch: javax.swing - import clean ups


From: Michael Koch
Subject: Re: Patch: javax.swing - import clean ups
Date: Sun, 2 May 2004 12:40:27 +0200
User-agent: KMail/1.5.4

Am Sonntag, 2. Mai 2004 12:22 schrieb Mark Wielaard:

> > diff -u -r1.14 JComponent.java
> > --- javax/swing/JComponent.java 17 Apr 2004 23:24:46 -0000     
> > 1.14 +++ javax/swing/JComponent.java 29 Apr 2004 06:59:16 -0000
> > [...]
> > @@ -946,7 +943,7 @@
> >         public void reshape(int x, int y, int w, int h)
> >         {
> >                 ///      Moves and resizes this component.
> > -               super.reshape(x,y,w,h);
> > +               setBounds(x,y,w,h);
> >         }
> >
> >
> >
> > diff -u -r1.4 ViewportLayout.java
> > --- javax/swing/ViewportLayout.java     19 Mar 2004 21:22:24
> > -0000      1.4
> > +++ javax/swing/ViewportLayout.java     29 Apr 2004 06:59:18 -0000
> > @@ -67,7 +67,7 @@
> >            return null;
> >         }
> >         public void layoutContainer(Container parent) {
> > -          if (parent.countComponents() == 1)
> > +          if (parent.getComponentCount() == 1)
> >              {
> >                // This should usually be true, but if it's not it
> > is // probably nicer if we do not panic.

Damn, this was not considered to be commited. :-(

Somehow I wasnt carefully enough when merging from my working tree to my 
commit tree.


Michael




reply via email to

[Prev in Thread] Current Thread [Next in Thread]