1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

[269306] Add PROP_ID2 to checkProperty()

This commit is contained in:
Marc Khouzam 2009-03-19 16:02:54 +00:00
parent c25cfb3731
commit 32e61b60a7

View file

@ -94,7 +94,9 @@ class ExecutionContextLabelText extends LabelText {
if (PROP_NAME_KNOWN.equals(propertyName) || if (PROP_NAME_KNOWN.equals(propertyName) ||
IElementPropertiesProvider.PROP_NAME.equals(propertyName) || IElementPropertiesProvider.PROP_NAME.equals(propertyName) ||
PROP_ID_KNOWN.equals(propertyName) || PROP_ID_KNOWN.equals(propertyName) ||
ILaunchVMConstants.PROP_ID.equals(propertyName)) ILaunchVMConstants.PROP_ID.equals(propertyName) ||
PROP_ID2_KNOWN.equals(propertyName) ||
ILaunchVMConstants.PROP_ID2.equals(propertyName))
{ {
return true; return true;
} }