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 <[EMAIL PROTECTED]>
Resynced with GNU Classpath.
2005-03-11 Roman Kennke <[EMAIL PROTECTED]>
* java/awt/Compmonent.java
(setComponentOrientation): The variable oldOrientation is initialized
too early. This is fixed.
2005-03-11 Roman Kennke <[EMAIL PROTECTED]>
* 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 <[EMAIL PROTECTED]>
Resynced with GNU Classpath.
+
+ 2005-03-11 Roman Kennke <[EMAIL PROTECTED]>
+
+ * java/awt/Compmonent.java
+ (setComponentOrientation): The variable oldOrientation is initialized
+ too early. This is fixed.
+
+ 2005-03-11 Roman Kennke <[EMAIL PROTECTED]>
+
+ * java/awt/Compmonent.java
+ (setComponentOrientation): Made this property firing a
+ PropertyChangeEvent.
+
+2005-03-13 Dalibor Topic <[EMAIL PROTECTED]>
+
+ Resynced with GNU Classpath.
2005-03-10 Andrew Haley <[EMAIL PROTECTED]>
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);
}
/**
_______________________________________________
kaffe mailing list
[email protected]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe