[kaffe] CVS kaffe (robilad): Resynced with GNU Classpath: fixes for Component

Kaffe CVS cvs-commits at kaffe.org
Mon Mar 14 18:24:15 PST 2005


PatchSet 5566 
Date: 2005/03/15 02:18:51
Author: robilad
Branch: HEAD
Tag: (none) 
Log:
Resynced with GNU Classpath: fixes for Component

2005-03-13  Dalibor Topic  <robilad at kaffe.org>

Resynced with GNU Classpath.

2005-03-11  Roman Kennke  <roman at kennke.org>

* java/awt/Compmonent.java
(setComponentOrientation): The variable oldOrientation is initialized
too early. This is fixed.

2005-03-11  Roman Kennke  <roman at kennke.org>

* java/awt/Compmonent.java
(setComponentOrientation): Made this property firing a
PropertyChangeEvent.

Members: 
	ChangeLog:1.3740->1.3741 
	libraries/javalib/java/awt/Component.java:1.49->1.50 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.3740 kaffe/ChangeLog:1.3741
--- kaffe/ChangeLog:1.3740	Tue Mar 15 02:09:28 2005
+++ kaffe/ChangeLog	Tue Mar 15 02:18:51 2005
@@ -1,6 +1,22 @@
 2005-03-13  Dalibor Topic  <robilad at kaffe.org>
 
 	Resynced with GNU Classpath.
+
+	2005-03-11  Roman Kennke  <roman at kennke.org>
+
+	* java/awt/Compmonent.java
+	(setComponentOrientation): The variable oldOrientation is initialized
+	too early. This is fixed.
+
+	2005-03-11  Roman Kennke  <roman at kennke.org>
+
+	* java/awt/Compmonent.java
+	(setComponentOrientation): Made this property firing a
+	PropertyChangeEvent.
+	
+2005-03-13  Dalibor Topic  <robilad at kaffe.org>
+
+	Resynced with GNU Classpath.
 	
 	2005-03-10  Andrew Haley  <aph at redhat.com>
 
Index: kaffe/libraries/javalib/java/awt/Component.java
diff -u kaffe/libraries/javalib/java/awt/Component.java:1.49 kaffe/libraries/javalib/java/awt/Component.java:1.50
--- kaffe/libraries/javalib/java/awt/Component.java:1.49	Fri Feb 18 15:13:39 2005
+++ kaffe/libraries/javalib/java/awt/Component.java	Tue Mar 15 02:18:54 2005
@@ -4441,7 +4441,9 @@
   {
     if (o == null)
       throw new NullPointerException();
+    ComponentOrientation oldOrientation = orientation;
     orientation = o;
+    firePropertyChange("componentOrientation", oldOrientation, o);
   }
 
   /**




More information about the kaffe mailing list