Index: javax/swing/plaf/basic/BasicTreeUI.java =================================================================== RCS file: /cvsroot/classpath/classpath/javax/swing/plaf/basic/BasicTreeUI.java,v retrieving revision 1.83 diff -u -r1.83 BasicTreeUI.java --- javax/swing/plaf/basic/BasicTreeUI.java 26 Sep 2005 15:20:00 -0000 1.83 +++ javax/swing/plaf/basic/BasicTreeUI.java 29 Sep 2005 22:41:45 -0000 @@ -329,7 +329,7 @@ * * @return the indent value for the left child. */ - public int getLeftChildIndent(int newAmount) + public int getLeftChildIndent() { return leftChildIndent; } @@ -3642,7 +3642,7 @@ * is the center position in y-direction FIXME what to do if x < * (icon.width / 2). Same with y */ - protected void drawCentered(JComponent c, Graphics g, Icon icon, int x, int y) + protected void drawCentered(Component c, Graphics g, Icon icon, int x, int y) { int beginPositionX = x - icon.getIconWidth() / 2; int beginPositionY = y - icon.getIconHeight() / 2;