1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

fireevents to the children

This commit is contained in:
Alain Magloire 2004-11-12 02:12:30 +00:00
parent f9fc2468d8
commit 4bc6d0803b

View file

@ -157,6 +157,10 @@ public class ExpressionManager extends Manager {
if (vars[i].getMIVar().getVarName().equals(varName)) {
return vars[i];
}
Variable v = vars[i].getChild(varName);
if (v != null) {
return v;
}
}
return null;
}