forked from qt-creator/qt-creator
debugger: refactoring, use QByteArray instead of QString when appropriate
This commit is contained in:
@@ -564,7 +564,7 @@ bool CDBBreakPoint::synchronizeBreakPoints(CIDebugControl* debugControl,
|
||||
handler->takeInsertedBreakPoint(nbd);
|
||||
updateMarkers = true;
|
||||
nbd->pending = false;
|
||||
nbd->bpNumber = QString::number(id);
|
||||
nbd->bpNumber = QByteArray::number(uint(id));
|
||||
nbd->bpAddress = QLatin1String("0x") + QString::number(address, 16);
|
||||
// Take over rest as is
|
||||
nbd->bpCondition = nbd->condition;
|
||||
|
||||
Reference in New Issue
Block a user