forked from qt-creator/qt-creator
debugger: don't duplicated "full name" information in break response
Less information to keep in sync. Change-Id: Icd862bbf8965eefd8ea3ad17b6f574b1f85bb8d2 Reviewed-on: http://codereview.qt.nokia.com/1069 Reviewed-by: hjk <qthjk@ovi.com> Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
This commit is contained in:
@@ -1269,10 +1269,10 @@ const BreakpointResponse &BreakHandler::response(BreakpointModelId id) const
|
||||
{
|
||||
static BreakpointResponse dummy;
|
||||
ConstIterator it = m_storage.find(id);
|
||||
BREAK_ASSERT(it != m_storage.end(),
|
||||
qDebug() << "NO RESPONSE FOR " << id; return dummy);
|
||||
if (it == m_storage.end())
|
||||
if (it == m_storage.end()) {
|
||||
qDebug() << "NO RESPONSE FOR " << id;
|
||||
return dummy;
|
||||
}
|
||||
return it->response;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user