forked from qt-creator/qt-creator
Debugger: Replace GdbMi::findChild() with an operator[]
Less noise. Change-Id: I8e533c97207ff5b9c79182c4fb99993f1992154f Reviewed-by: David Schulz <david.schulz@digia.com>
This commit is contained in:
@@ -190,7 +190,7 @@ void GdbCoreEngine::handleTargetCore(const GdbResponse &response)
|
||||
}
|
||||
QString msg = tr("Attach to core \"%1\" failed:\n")
|
||||
.arg(startParameters().coreFile)
|
||||
+ QString::fromLocal8Bit(response.data.findChild("msg").data());
|
||||
+ QString::fromLocal8Bit(response.data["msg"].data());
|
||||
notifyInferiorSetupFailed(msg);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user