aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerstreamops.cpp
diff options
context:
space:
mode:
authorArvid Ephraim Picciani <arvid.picciani@nokia.com>2010-12-01 15:57:13 +0100
committerArvid Ephraim Picciani <arvid.picciani@nokia.com>2010-12-01 15:57:13 +0100
commitb84ce82e071978849b34750fc4d797855d5fe541 (patch)
tree754bd4dd008cd447641ef3f94b76724d6881aa4b /src/plugins/debugger/debuggerstreamops.cpp
parent0ab67db58ea2824d03e6f7e10da367ad0ac0b29f (diff)
debugger: Engine decides now if a StackFrame is considered usable
Diffstat (limited to 'src/plugins/debugger/debuggerstreamops.cpp')
-rw-r--r--src/plugins/debugger/debuggerstreamops.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/debugger/debuggerstreamops.cpp b/src/plugins/debugger/debuggerstreamops.cpp
index 85c0438c70..067eab308a 100644
--- a/src/plugins/debugger/debuggerstreamops.cpp
+++ b/src/plugins/debugger/debuggerstreamops.cpp
@@ -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;
}