debugger: -break-list needs a stopped state to show new breakpoints in the gui

This commit is contained in:
hjk
2010-01-04 15:35:04 +01:00
parent 39c466658a
commit 960f8dc03d

View File

@@ -1964,7 +1964,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)