Debugger: Privatize GdbMi::m_children

Change-Id: I6e51290c4521be40f516a452f32bdc82a4c051e6
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2018-09-25 18:48:29 +02:00
parent e0dcb645cd
commit 4b42789bda
11 changed files with 63 additions and 62 deletions

View File

@@ -296,7 +296,7 @@ void BreakpointParameters::updateFromGdbOutput(const GdbMi &bkpt)
enabled = true;
pending = false;
condition.clear();
for (const GdbMi &child : bkpt.children()) {
for (const GdbMi &child : bkpt) {
if (child.hasName("number")) {
// Handled on caller side.
} else if (child.hasName("func")) {