1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-14 11:45:38 +02:00

Should have been part of a previous commit fix.

This commit is contained in:
Alain Magloire 2004-11-12 18:46:10 +00:00
parent 78118d0486
commit 4f1af97e09
2 changed files with 2 additions and 2 deletions

View file

@ -52,7 +52,7 @@ public class DestroyedEvent implements ICDIDestroyedEvent {
source = variable; source = variable;
} else { } else {
ExpressionManager expMgr = session.getExpressionManager(); ExpressionManager expMgr = session.getExpressionManager();
variable = expMgr.getVariable(miSession, varName); variable = expMgr.removeVariableFromList(miSession, varName);
if (variable != null) { if (variable != null) {
source = variable; source = variable;
} else { } else {

View file

@ -75,7 +75,7 @@ public abstract class Variable extends VariableDescriptor implements ICDIVariabl
MIVar fMiVar; MIVar fMiVar;
Value value; Value value;
ICDIVariable[] children = new ICDIVariable[0]; public ICDIVariable[] children = new ICDIVariable[0];
String editable = null; String editable = null;
String language; String language;
boolean isFake = false; boolean isFake = false;