debugger: more QByteArray/type

This commit is contained in:
hjk
2010-09-01 19:02:56 +02:00
parent 46aa04dcb4
commit f91ba77cee
3 changed files with 29 additions and 28 deletions

View File

@@ -1520,7 +1520,7 @@ void GdbEngine::handleHasPython(const GdbResponse &response)
data.fromStringMultiple(contents.data());
const GdbMi dumpers = data.findChild("dumpers");
foreach (const GdbMi &dumper, dumpers.children()) {
QString type = _(dumper.findChild("type").data());
QByteArray type = dumper.findChild("type").data();
QStringList formats(tr("Raw structure"));
QString reported = _(dumper.findChild("formats").data());
formats.append(reported.split(_(","), QString::SkipEmptyParts));