Debugger: Fix StackFrame.usable for CDB

This commit is contained in:
Friedemann Kleint
2010-12-01 16:37:34 +01:00
parent abbb4469d5
commit 1477165e1c
4 changed files with 4 additions and 4 deletions

View File

@@ -1801,6 +1801,7 @@ static StackFrames parseFrames(const QByteArray &data)
if (fullName.isValid()) {
frame.file = QFile::decodeName(fullName.data());
frame.line = frameMi.findChild("line").data().toInt();
frame.usable = QFileInfo(frame.file).isFile();
}
frame.function = QLatin1String(frameMi.findChild("func").data());
frame.from = QLatin1String(frameMi.findChild("from").data());