mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-15 12:15:47 +02:00
Patch for bug 187118 by Jason Montojo - Missing options on Connection tab in Linux
This commit is contained in:
parent
90274d54bd
commit
4a76aaf29f
1 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2005 IBM Corporation and others.
|
||||
* Copyright (c) 2005, 2007 IBM Corporation and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
|
@ -197,6 +197,7 @@ public class ComboDialogField extends DialogField {
|
|||
public void selectItem(int index) {
|
||||
if (isOkToUse(fComboControl)) {
|
||||
fComboControl.select(index);
|
||||
fSelectionIndex= index;
|
||||
} else {
|
||||
if (index >= 0 && index < fItems.length) {
|
||||
fText= fItems[index];
|
||||
|
|
Loading…
Add table
Reference in a new issue