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:
parent
78118d0486
commit
4f1af97e09
2 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue