From 32e61b60a770b5a62c0a6164ffba4a202251e26c Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Thu, 19 Mar 2009 16:02:54 +0000 Subject: [PATCH] [269306] Add PROP_ID2 to checkProperty() --- .../debug/ui/viewmodel/launch/ExecutionContextLabelText.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/ExecutionContextLabelText.java b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/ExecutionContextLabelText.java index 07edf2fcab9..c0a16cadd53 100644 --- a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/ExecutionContextLabelText.java +++ b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/launch/ExecutionContextLabelText.java @@ -94,7 +94,9 @@ class ExecutionContextLabelText extends LabelText { if (PROP_NAME_KNOWN.equals(propertyName) || IElementPropertiesProvider.PROP_NAME.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; }