summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/gdb/pythongdbengine.cpp
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2010-07-09 17:07:59 +0200
committerhjk <qtc-committer@nokia.com>2010-07-14 17:49:16 +0200
commite760700f0fea2f9a25cdbbbc1af52a446be4b183 (patch)
tree7a5ac650129e16119e1f076c27262311e4f22982 /src/plugins/debugger/gdb/pythongdbengine.cpp
parent6089bc1b9e046b9b1b36dc64ed7920467909ebe8 (diff)
downloadqt-creator-e760700f0fea2f9a25cdbbbc1af52a446be4b183.tar.gz
debugger: overhaul "state machine"
This mainly allows for more precise shutdown and tightens the set of allowed transitions.
Diffstat (limited to 'src/plugins/debugger/gdb/pythongdbengine.cpp')
-rw-r--r--src/plugins/debugger/gdb/pythongdbengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/gdb/pythongdbengine.cpp b/src/plugins/debugger/gdb/pythongdbengine.cpp
index 8126c95ba5..74679e9f21 100644
--- a/src/plugins/debugger/gdb/pythongdbengine.cpp
+++ b/src/plugins/debugger/gdb/pythongdbengine.cpp
@@ -196,7 +196,7 @@ void GdbEngine::updateAllPython()
{
PRECONDITION;
//PENDING_DEBUG("UPDATING ALL\n");
- QTC_ASSERT(state() == InferiorUnrunnable || state() == InferiorStopped, /**/);
+ QTC_ASSERT(state() == InferiorUnrunnable || state() == InferiorStopOk, /**/);
reloadModulesInternal();
postCommand("-stack-list-frames", CB(handleStackListFrames),
QVariant::fromValue<StackCookie>(StackCookie(false, true)));