forked from qt-creator/qt-creator
debugger: split BreakpointIndex into plugin and debugger specific part
Change-Id: I21d10cf42eb039c74475e106537b6e107d155196 Reviewed-on: http://codereview.qt.nokia.com/745 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -296,7 +296,7 @@ void DisassemblerAgent::updateBreakpointMarkers()
|
||||
return;
|
||||
|
||||
BreakHandler *handler = breakHandler();
|
||||
BreakpointIds ids = handler->engineBreakpointIds(d->engine);
|
||||
BreakpointModelIds ids = handler->engineBreakpointIds(d->engine);
|
||||
if (ids.isEmpty())
|
||||
return;
|
||||
|
||||
@@ -305,7 +305,7 @@ void DisassemblerAgent::updateBreakpointMarkers()
|
||||
foreach (TextEditor::ITextMark *marker, d->breakpointMarks)
|
||||
d->editor->markableInterface()->removeMark(marker);
|
||||
d->breakpointMarks.clear();
|
||||
foreach (BreakpointId id, ids) {
|
||||
foreach (BreakpointModelId id, ids) {
|
||||
const quint64 address = handler->response(id).address;
|
||||
if (!address)
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user