forked from qt-creator/qt-creator
lddb: fix tons of missing breaks
This commit is contained in:
@@ -483,6 +483,7 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
|
|||||||
s >> id;
|
s >> id;
|
||||||
breakHandler()->notifyBreakpointInsertOk(id);
|
breakHandler()->notifyBreakpointInsertOk(id);
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
case IPCEngineGuest::NotifyAddBreakpointFailed:
|
case IPCEngineGuest::NotifyAddBreakpointFailed:
|
||||||
{
|
{
|
||||||
QDataStream s(payload);
|
QDataStream s(payload);
|
||||||
@@ -491,6 +492,7 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
|
|||||||
s >> id;
|
s >> id;
|
||||||
breakHandler()->notifyBreakpointInsertFailed(id);
|
breakHandler()->notifyBreakpointInsertFailed(id);
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
case IPCEngineGuest::NotifyRemoveBreakpointOk:
|
case IPCEngineGuest::NotifyRemoveBreakpointOk:
|
||||||
{
|
{
|
||||||
QDataStream s(payload);
|
QDataStream s(payload);
|
||||||
@@ -499,6 +501,7 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
|
|||||||
s >> id;
|
s >> id;
|
||||||
breakHandler()->notifyBreakpointRemoveOk(id);
|
breakHandler()->notifyBreakpointRemoveOk(id);
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
case IPCEngineGuest::NotifyRemoveBreakpointFailed:
|
case IPCEngineGuest::NotifyRemoveBreakpointFailed:
|
||||||
{
|
{
|
||||||
QDataStream s(payload);
|
QDataStream s(payload);
|
||||||
@@ -507,6 +510,7 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
|
|||||||
s >> id;
|
s >> id;
|
||||||
breakHandler()->notifyBreakpointRemoveFailed(id);
|
breakHandler()->notifyBreakpointRemoveFailed(id);
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
case IPCEngineGuest::NotifyChangeBreakpointOk:
|
case IPCEngineGuest::NotifyChangeBreakpointOk:
|
||||||
{
|
{
|
||||||
QDataStream s(payload);
|
QDataStream s(payload);
|
||||||
@@ -515,6 +519,7 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
|
|||||||
s >> id;
|
s >> id;
|
||||||
breakHandler()->notifyBreakpointChangeOk(id);
|
breakHandler()->notifyBreakpointChangeOk(id);
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
case IPCEngineGuest::NotifyChangeBreakpointFailed:
|
case IPCEngineGuest::NotifyChangeBreakpointFailed:
|
||||||
{
|
{
|
||||||
QDataStream s(payload);
|
QDataStream s(payload);
|
||||||
@@ -523,6 +528,7 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
|
|||||||
s >> id;
|
s >> id;
|
||||||
breakHandler()->notifyBreakpointChangeFailed(id);
|
breakHandler()->notifyBreakpointChangeFailed(id);
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
case IPCEngineGuest::NotifyBreakpointAdjusted:
|
case IPCEngineGuest::NotifyBreakpointAdjusted:
|
||||||
{
|
{
|
||||||
QDataStream s(payload);
|
QDataStream s(payload);
|
||||||
@@ -532,6 +538,7 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
|
|||||||
s >> id >> d;
|
s >> id >> d;
|
||||||
breakHandler()->notifyBreakpointAdjusted(id, d);
|
breakHandler()->notifyBreakpointAdjusted(id, d);
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user