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