summaryrefslogtreecommitdiff
path: root/libjava/javax
diff options
context:
space:
mode:
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2005-04-19 05:23:13 +0000
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2005-04-19 05:23:13 +0000
commitb23b5b6c3bcfcf85efd7b13b07818d3ae515066a (patch)
treee6cfd5d4a4438d2fb3249c8dd9432be0f9b648e1 /libjava/javax
parent2295aa6c8c8fcdb65dbc68006db984b978a1c689 (diff)
downloadgcc-b23b5b6c3bcfcf85efd7b13b07818d3ae515066a.tar.gz
2005-04-19 Audrius Meskauskas <audriusa@bluewin.ch>
* javax/swing/JComboBox.java (constructors): selecting the first item if the box was constructed from the provided non - empty array or vector. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98376 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/javax')
-rw-r--r--libjava/javax/swing/JComboBox.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/libjava/javax/swing/JComboBox.java b/libjava/javax/swing/JComboBox.java
index 4e2a88110fc..078c77df436 100644
--- a/libjava/javax/swing/JComboBox.java
+++ b/libjava/javax/swing/JComboBox.java
@@ -185,6 +185,9 @@ public class JComboBox extends JComponent implements ItemSelectable,
public JComboBox(Object[] itemArray)
{
this(new DefaultComboBoxModel(itemArray));
+
+ if (itemArray.length > 0)
+ setSelectedIndex(0);
}
/**
@@ -195,6 +198,9 @@ public class JComboBox extends JComponent implements ItemSelectable,
public JComboBox(Vector itemVector)
{
this(new DefaultComboBoxModel(itemVector));
+
+ if (itemVector.size() > 0)
+ setSelectedIndex(0);
}
/**