summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcon <qtc-committer@nokia.com>2010-01-13 11:02:10 +0100
committercon <qtc-committer@nokia.com>2010-01-13 11:51:27 +0100
commit1f3720a14de65303b57f884d5dc44f8aa9e76618 (patch)
tree37e444f8cc01b71dc16b3e3689af16aad96ce480
parent4be033ae40b277240332ff55a0667c9be7883326 (diff)
downloadqt-creator-1f3720a14de65303b57f884d5dc44f8aa9e76618.tar.gz
Fixes: Not able to set breakpoints in running application.
Regression introduced by the gdb startup speedup. Reviewed-by: hjk (cherry picked from commit 232db42069cc6da3c8e89d0a37c155ee43888a27)
-rw-r--r--src/plugins/debugger/gdb/gdbengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp
index 0e8439e515..2aa844bd65 100644
--- a/src/plugins/debugger/gdb/gdbengine.cpp
+++ b/src/plugins/debugger/gdb/gdbengine.cpp
@@ -1948,7 +1948,7 @@ void GdbEngine::sendInsertBreakpoint(int index)
void GdbEngine::reloadBreakListInternal()
{
m_breakListUpdating = true;
- postCommand(_("-break-list"), CB(handleBreakList));
+ postCommand(_("-break-list"), NeedsStop, CB(handleBreakList));
}
void GdbEngine::handleBreakList(const GdbResponse &response)