mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 09:25:31 +02:00
Bug 374795 - Open Element dialog (CDT) has text field disabled in 3.8M6
This commit is contained in:
parent
f77c9feddf
commit
66e13018e4
1 changed files with 8 additions and 5 deletions
|
@ -336,11 +336,6 @@ public class ElementSelectionDialog extends TypeSelectionDialog {
|
|||
return types.toArray(new ITypeInfo[types.size()]);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected final void setListElements(Object[] elements) {
|
||||
super.setListElements(elements);
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Unsupported
|
||||
*/
|
||||
|
@ -350,6 +345,14 @@ public class ElementSelectionDialog extends TypeSelectionDialog {
|
|||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see org.eclipse.ui.dialogs.AbstractElementListSelectionDialog#handleElementsChanged()
|
||||
*/
|
||||
@Override
|
||||
protected void handleElementsChanged() {
|
||||
updateOkState();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void handleEmptyList() {
|
||||
updateOkState();
|
||||
|
|
Loading…
Add table
Reference in a new issue