forked from qt-creator/qt-creator
Debugger: Introduce BreakpointParameters as base struct.
For Breakpoint data manipulation. Reviewed-by: hjk
This commit is contained in:
@@ -740,9 +740,9 @@ void QmlEngine::messageReceived(const QByteArray &message)
|
||||
if (processedFilename == file && handler->lineNumber(id) == line) {
|
||||
handler->setState(id, BreakpointInserted);
|
||||
BreakpointResponse br = handler->response(id);
|
||||
br.bpFileName = file;
|
||||
br.bpLineNumber = line;
|
||||
br.bpFuncName = function;
|
||||
br.fileName = file;
|
||||
br.lineNumber = line;
|
||||
br.functionName = function;
|
||||
handler->setResponse(id, br);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user