| 36 | } |
| 37 | |
| 38 | void LocalTreeItem::setChildrenUpdated(bool updated) |
| 39 | { |
| 40 | if (childCount() > 0) { |
| 41 | auto it = children.begin(); |
| 42 | while (it != children.end()) { |
| 43 | (*it)->setUpdated(updated); |
| 44 | if ((*it)->childCount() > 0) |
| 45 | (*it)->setChildrenUpdated(updated); |
| 46 | it++; |
| 47 | } |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | LocalTreeItem *LocalTreeItem::updateVariable(dap::Variable &var) |
| 52 | { |
no test coverage detected