changeset 8176:a6cbc82d62f9 jdk7u71-b13

8057184: JCK8's api/javax_swing/JDesktopPane/descriptions.html#getset failed with GTKLookAndFeel on Linux and Solaris Reviewed-by: ant, azvegint
author alexsch
date Mon, 08 Sep 2014 15:37:28 +0400
parents ec52e750cd4f
children 78a7e3c7165d
files src/share/classes/javax/swing/JDesktopPane.java
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/classes/javax/swing/JDesktopPane.java	Tue Sep 02 10:42:33 2014 -0700
+++ b/src/share/classes/javax/swing/JDesktopPane.java	Mon Sep 08 15:37:28 2014 +0400
@@ -43,6 +43,7 @@
 import java.beans.PropertyVetoException;
 import java.util.Set;
 import java.util.TreeSet;
+import java.util.LinkedHashSet;
 /**
  * A container used to create a multiple-document interface or a virtual desktop.
  * You create <code>JInternalFrame</code> objects and add them to the
@@ -266,7 +267,7 @@
 
     private static Collection<JInternalFrame> getAllFrames(Container parent) {
         int i, count;
-        Collection<JInternalFrame> results = new ArrayList<JInternalFrame>();
+        Collection<JInternalFrame> results = new LinkedHashSet<>();
         count = parent.getComponentCount();
         for (i = 0; i < count; i++) {
             Component next = parent.getComponent(i);