mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 23:05:47 +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()]);
|
return types.toArray(new ITypeInfo[types.size()]);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
protected final void setListElements(Object[] elements) {
|
|
||||||
super.setListElements(elements);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @deprecated Unsupported
|
* @deprecated Unsupported
|
||||||
*/
|
*/
|
||||||
|
@ -350,6 +345,14 @@ public class ElementSelectionDialog extends TypeSelectionDialog {
|
||||||
throw new UnsupportedOperationException();
|
throw new UnsupportedOperationException();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see org.eclipse.ui.dialogs.AbstractElementListSelectionDialog#handleElementsChanged()
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
protected void handleElementsChanged() {
|
||||||
|
updateOkState();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void handleEmptyList() {
|
protected void handleEmptyList() {
|
||||||
updateOkState();
|
updateOkState();
|
||||||
|
|
Loading…
Add table
Reference in a new issue