1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-13 19:25: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;
} else {
ExpressionManager expMgr = session.getExpressionManager();
variable = expMgr.getVariable(miSession, varName);
variable = expMgr.removeVariableFromList(miSession, varName);
if (variable != null) {
source = variable;
} else {

View file

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