changeset 1314:91c3966fbc7a

2009-01-15 Omair Majid <omajid@redhat.com> * patches/icedtea-a11y-property-change.patch: Removed incorrect patch. * HACKING: Remove above patch. * Makefile.am (ICEDTEA_PATCHES): Removed patch.
author Omair Majid <omajid@redhat.com>
date Thu, 15 Jan 2009 16:18:23 -0500
parents 9ecdf73ae0e1
children 3a265e06dc74
files ChangeLog HACKING Makefile.am patches/icedtea-a11y-property-change.patch
diffstat 4 files changed, 6 insertions(+), 19 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu Jan 15 09:14:52 2009 -0500
+++ b/ChangeLog	Thu Jan 15 16:18:23 2009 -0500
@@ -1,3 +1,9 @@
+2009-01-15  Omair Majid  <omajid@redhat.com>
+
+	* patches/icedtea-a11y-property-change.patch: Removed incorrect patch.
+	* HACKING: Remove above patch.
+	* Makefile.am (ICEDTEA_PATCHES): Removed patch.
+
 2009-01-15  Gary Benson  <gbenson@redhat.com>
 
 	* ports/hotspot/src/cpu/zero/vm/globals_zero.hpp
--- a/HACKING	Thu Jan 15 09:14:52 2009 -0500
+++ b/HACKING	Thu Jan 15 16:18:23 2009 -0500
@@ -78,7 +78,6 @@
 * icedtea-format-warnings.patch: Fix build failures with -Wformat=1.
 * icedtea-io_util-overflow.patch: Replace some code to correctly handle overflows. (S6788196)
 * icedtea-cc-interp-jvmti.patch: Disable some JVMTI capabilities which are unsupported or do not work with the C++ interpreter.
-* icedtea-a11y-property-change.patch: Dont fire PropertyChangeEvent if the property hasnt changed.
 * icedtea-demo-swingapplet.patch: Add missing html file needed to run the demo.
 * icedtea-6791168.patch: Fix build failure with GCC-4.4 (PR 38725) and compiler warnings.
 * icedtea-no-precompiled.patch: Don't use precompiled header files in hotspot.
--- a/Makefile.am	Thu Jan 15 09:14:52 2009 -0500
+++ b/Makefile.am	Thu Jan 15 16:18:23 2009 -0500
@@ -690,7 +690,6 @@
 
 ICEDTEA_PATCHES += \
 	$(DISTRIBUTION_PATCHES) \
-	patches/icedtea-a11y-property-change.patch \
 	patches/icedtea-demo-swingapplet.patch \
 	patches/icedtea-awt-window-size.patch
 
--- a/patches/icedtea-a11y-property-change.patch	Thu Jan 15 09:14:52 2009 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
---- AccessibleContext.java.orig	2008-12-24 11:33:22.000000000 -0500
-+++ openjdk/jdk/src/share/classes/javax/accessibility/AccessibleContext.java	2008-12-24 11:35:29.000000000 -0500
-@@ -736,6 +736,14 @@
-                                    Object oldValue,
-                                    Object newValue) {
-         if (accessibleChangeSupport != null) {
-+
-+            if (oldValue == newValue) {
-+                return;
-+            }
-+            if (oldValue != null && newValue != null && oldValue.equals(newValue)) {
-+                return;
-+            }
-+
-             if (newValue instanceof PropertyChangeEvent) {
-                 PropertyChangeEvent pce = (PropertyChangeEvent)newValue;
-                 accessibleChangeSupport.firePropertyChange(pce);