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]

[gui] Patch: javax.swing.ToolTipManager


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi list,


I just commited the attached patch to fix the constructors of the 
inner classes of javax/swing/ToolTipManager.java.


Michael


2004-06-18  Michael Koch  <konqueror@gmx.de>

	* javax/swing/ToolTipManager.java
	(stillInsideTimerAction): Fixed constructor arguments.
	(outsideTimerAction): Likewise.
	(insideTimerAction): Likewise.

- -- 
Homepage: http://www.worldforge.org/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFA0wyPWSOgCCdjSDsRApt2AJ47DrFDL1g528gpOxw6Opv0kv9+jgCfee9j
piRdacrR6lRUJ3XUkK8JUxw=
=KPck
-----END PGP SIGNATURE-----
Index: javax/swing/ToolTipManager.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/javax/swing/ToolTipManager.java,v
retrieving revision 1.2
diff -u -b -B -r1.2 ToolTipManager.java
--- javax/swing/ToolTipManager.java	10 Jan 2004 21:07:43 -0000	1.2
+++ javax/swing/ToolTipManager.java	18 Jun 2004 15:34:39 -0000
@@ -37,7 +37,6 @@
 
 package javax.swing;
 
-import java.awt.Rectangle;
 import java.awt.event.ActionEvent;
 import java.awt.event.ActionListener;
 import java.awt.event.MouseAdapter;
@@ -73,7 +72,7 @@
 		 * Constructor stillInsideTimerAction
 		 * @param manager TODO
 		 */
-		protected stillInsideTimerAction(ToolTipManager manager) {
+		protected stillInsideTimerAction() {
 			// TODO
 		} // stillInsideTimerAction()
 
@@ -111,7 +110,7 @@
 		 * Constructor outsideTimerAction
 		 * @param manager TODO
 		 */
-		protected outsideTimerAction(ToolTipManager manager) {
+		protected outsideTimerAction() {
 			// TODO
 		} // outsideTimerAction()
 
@@ -149,7 +148,7 @@
 		 * Constructor insideTimerAction
 		 * @param manager TODO
 		 */
-		protected insideTimerAction(ToolTipManager manager) {
+		protected insideTimerAction() {
 			// TODO
 		} // insideTimerAction()
 

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