This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [gui][PATCH] Fix errors found by jikes


On Tue, 2004-07-13 at 10:51, Kim Ho wrote:
> Hi,
> 
> This patch allows the gui-branch to be compiled with jikes again. Thanks
> to Olga for pointing it out.

Argh. messed up.

Another patch.

2004-07-13  Kim Ho  <kho@redhat.com>

	* javax/swing/plaf/basic/BasicToolBarUI.java:
	(DragWindow): Use the right constructor.
Index: javax/swing/plaf/basic/BasicToolBarUI.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/javax/swing/plaf/basic/BasicToolBarUI.java,v
retrieving revision 1.1.2.6
diff -u -r1.1.2.6 BasicToolBarUI.java
--- javax/swing/plaf/basic/BasicToolBarUI.java	13 Jul 2004 14:55:36 -0000	1.1.2.6
+++ javax/swing/plaf/basic/BasicToolBarUI.java	13 Jul 2004 15:17:28 -0000
@@ -1095,7 +1095,7 @@
      */
     private DragWindow()
     {
-      super();
+      super(null);
     }
 
     /**

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]