debugger: Engine decides now if a StackFrame is considered usable

This commit is contained in:
Arvid Ephraim Picciani
2010-12-01 15:57:13 +01:00
parent 0ab67db58e
commit b84ce82e07
5 changed files with 7 additions and 2 deletions

View File

@@ -138,6 +138,7 @@ static QDataStream &operator>>(QDataStream &s, StackFrame &frame)
s >> function >> file >> frame.line;
frame.function = QString::fromUtf8(function);
frame.file = QString::fromUtf8(file);
frame.usable = QFileInfo(frame.file).isReadable();
return s;
}