### Eclipse Workspace Patch 1.0 #P org.eclipse.swt Index: Eclipse SWT/carbon/org/eclipse/swt/widgets/Combo.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Combo.java,v retrieving revision 1.102 diff -u -r1.102 Combo.java --- Eclipse SWT/carbon/org/eclipse/swt/widgets/Combo.java 12 Nov 2007 20:25:52 -0000 1.102 +++ Eclipse SWT/carbon/org/eclipse/swt/widgets/Combo.java 7 Dec 2007 01:07:12 -0000 @@ -1557,10 +1557,14 @@ } } -/*public*/ void setListVisible (boolean visible) { +public void setListVisible (boolean visible) { checkWidget (); if ((style & SWT.READ_ONLY) != 0) { - //TODO - show the menu in the right place + if (visible) { + OS.HIViewSimulateClick(handle, (short) 1, 0, null); + } else { + // TODO: How do you clear the list? + } } else { OS.HIComboBoxSetListVisible (handle, visible); }