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

@@ -92,6 +92,7 @@ QDataStream &operator<<(QDataStream &stream, const StackFrame &s)
stream << s.to;
stream << s.line;
stream << s.address;
stream << s.usable;
return stream;
}
@@ -106,6 +107,7 @@ QDataStream &operator>>(QDataStream &stream, StackFrame &s)
stream >> s.to;
stream >> s.line;
stream >> s.address;
stream >> s.usable;
return stream;
}