commit-classpath
[Top][All Lists]
Advanced

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

[commit-cp] classpath ChangeLog java/awt/Component.java jav...


From: Lillian Angel
Subject: [commit-cp] classpath ChangeLog java/awt/Component.java jav...
Date: Wed, 14 Jun 2006 19:09:40 +0000

CVSROOT:        /cvsroot/classpath
Module name:    classpath
Changes by:     Lillian Angel <langel>  06/06/14 19:09:40

Modified files:
        .              : ChangeLog 
        java/awt       : Component.java TextComponent.java 

Log message:
        2006-06-14  Lillian Angel  <address@hidden>
        
                * java/awt/Component.java
                (ignoreOldMouseEvents): Made static.
                (translateEvent): Made static.
                * java/awt/TextComponent.java
                (ignoreOldMouseEvents): Made static.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/classpath/ChangeLog?cvsroot=classpath&r1=1.7817&r2=1.7818
http://cvs.savannah.gnu.org/viewcvs/classpath/java/awt/Component.java?cvsroot=classpath&r1=1.123&r2=1.124
http://cvs.savannah.gnu.org/viewcvs/classpath/java/awt/TextComponent.java?cvsroot=classpath&r1=1.22&r2=1.23

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/classpath/classpath/ChangeLog,v
retrieving revision 1.7817
retrieving revision 1.7818
diff -u -b -r1.7817 -r1.7818
--- ChangeLog   14 Jun 2006 17:23:07 -0000      1.7817
+++ ChangeLog   14 Jun 2006 19:09:39 -0000      1.7818
@@ -1,3 +1,11 @@
+2006-06-14  Lillian Angel  <address@hidden>
+
+       * java/awt/Component.java
+       (ignoreOldMouseEvents): Made static.
+       (translateEvent): Made static.
+       * java/awt/TextComponent.java
+       (ignoreOldMouseEvents): Made static.
+
 2006-06-14  Mark Wielaard  <address@hidden>
 
        * gnu/java/awt/peer/gtk/ComponentGraphics.java (drawLine): Lock and

Index: java/awt/Component.java
===================================================================
RCS file: /cvsroot/classpath/classpath/java/awt/Component.java,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -b -r1.123 -r1.124
--- java/awt/Component.java     14 Jun 2006 16:26:07 -0000      1.123
+++ java/awt/Component.java     14 Jun 2006 19:09:40 -0000      1.124
@@ -2323,7 +2323,7 @@
    * 
    * @return false, no mouse events are ignored.
    */
-  boolean ignoreOldMouseEvents()
+  static boolean ignoreOldMouseEvents()
   {
     return false;
   }
@@ -4812,7 +4812,7 @@
    *
    * @return an AWT 1.0 event representing e
    */
-  Event translateEvent (AWTEvent e)
+  static Event translateEvent (AWTEvent e)
   {
     Object target = e.getSource ();
     Event translated = null;

Index: java/awt/TextComponent.java
===================================================================
RCS file: /cvsroot/classpath/classpath/java/awt/TextComponent.java,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -b -r1.22 -r1.23
--- java/awt/TextComponent.java 14 Jun 2006 16:26:08 -0000      1.22
+++ java/awt/TextComponent.java 14 Jun 2006 19:09:40 -0000      1.23
@@ -740,7 +740,7 @@
    * 
    * @return true to ignore all old mouse events.
    */
-  boolean
+  static boolean
   ignoreOldMouseEvents()
   {
     return true;




reply via email to

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