forked from qt-creator/qt-creator
debugger: display "sub-breakpoints"
<MULTIPLE> happens in constructors, inline functions, and at other places like 'foreach' lines. Change-Id: Ifb89b659d279f257ba8295b80a35d605820ec54b Reviewed-on: http://codereview.qt.nokia.com/498 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -506,8 +506,9 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
|
||||
attemptBreakpointSynchronization();
|
||||
QDataStream s(payload);
|
||||
SET_NATIVE_BYTE_ORDER(s);
|
||||
BreakpointId id;
|
||||
s >> id;
|
||||
quint64 d;
|
||||
s >> d;
|
||||
BreakpointId id = BreakpointId::fromInternalId(d);
|
||||
breakHandler()->notifyBreakpointInsertOk(id);
|
||||
}
|
||||
break;
|
||||
@@ -515,8 +516,9 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
|
||||
{
|
||||
QDataStream s(payload);
|
||||
SET_NATIVE_BYTE_ORDER(s);
|
||||
BreakpointId id;
|
||||
s >> id;
|
||||
quint64 d;
|
||||
s >> d;
|
||||
BreakpointId id = BreakpointId::fromInternalId(d);
|
||||
breakHandler()->notifyBreakpointInsertFailed(id);
|
||||
}
|
||||
break;
|
||||
@@ -524,8 +526,9 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
|
||||
{
|
||||
QDataStream s(payload);
|
||||
SET_NATIVE_BYTE_ORDER(s);
|
||||
BreakpointId id;
|
||||
s >> id;
|
||||
quint64 d;
|
||||
s >> d;
|
||||
BreakpointId id = BreakpointId::fromInternalId(d);
|
||||
breakHandler()->notifyBreakpointRemoveOk(id);
|
||||
}
|
||||
break;
|
||||
@@ -533,8 +536,9 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
|
||||
{
|
||||
QDataStream s(payload);
|
||||
SET_NATIVE_BYTE_ORDER(s);
|
||||
BreakpointId id;
|
||||
s >> id;
|
||||
quint64 d;
|
||||
s >> d;
|
||||
BreakpointId id = BreakpointId::fromInternalId(d);
|
||||
breakHandler()->notifyBreakpointRemoveFailed(id);
|
||||
}
|
||||
break;
|
||||
@@ -542,8 +546,9 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
|
||||
{
|
||||
QDataStream s(payload);
|
||||
SET_NATIVE_BYTE_ORDER(s);
|
||||
BreakpointId id;
|
||||
s >> id;
|
||||
quint64 d;
|
||||
s >> d;
|
||||
BreakpointId id = BreakpointId::fromInternalId(d);
|
||||
breakHandler()->notifyBreakpointChangeOk(id);
|
||||
}
|
||||
break;
|
||||
@@ -551,8 +556,9 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
|
||||
{
|
||||
QDataStream s(payload);
|
||||
SET_NATIVE_BYTE_ORDER(s);
|
||||
BreakpointId id;
|
||||
s >> id;
|
||||
quint64 d;
|
||||
s >> d;
|
||||
BreakpointId id = BreakpointId::fromInternalId(d);
|
||||
breakHandler()->notifyBreakpointChangeFailed(id);
|
||||
}
|
||||
break;
|
||||
@@ -560,9 +566,10 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
|
||||
{
|
||||
QDataStream s(payload);
|
||||
SET_NATIVE_BYTE_ORDER(s);
|
||||
BreakpointId id;
|
||||
quint64 dd;
|
||||
BreakpointParameters d;
|
||||
s >> id >> d;
|
||||
s >> dd >> d;
|
||||
BreakpointId id = BreakpointId::fromInternalId(dd);
|
||||
breakHandler()->notifyBreakpointAdjusted(id, d);
|
||||
}
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user