Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
0ba7fd67
Commit
0ba7fd67
authored
Nov 26, 2010
by
Arvid Ephraim Picciani
Browse files
lddb: fix tons of missing breaks
parent
02b6e3cb
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/lldb/ipcenginehost.cpp
View file @
0ba7fd67
...
...
@@ -483,6 +483,7 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
s
>>
id
;
breakHandler
()
->
notifyBreakpointInsertOk
(
id
);
}
break
;
case
IPCEngineGuest
::
NotifyAddBreakpointFailed
:
{
QDataStream
s
(
payload
);
...
...
@@ -491,6 +492,7 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
s
>>
id
;
breakHandler
()
->
notifyBreakpointInsertFailed
(
id
);
}
break
;
case
IPCEngineGuest
::
NotifyRemoveBreakpointOk
:
{
QDataStream
s
(
payload
);
...
...
@@ -499,6 +501,7 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
s
>>
id
;
breakHandler
()
->
notifyBreakpointRemoveOk
(
id
);
}
break
;
case
IPCEngineGuest
::
NotifyRemoveBreakpointFailed
:
{
QDataStream
s
(
payload
);
...
...
@@ -507,6 +510,7 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
s
>>
id
;
breakHandler
()
->
notifyBreakpointRemoveFailed
(
id
);
}
break
;
case
IPCEngineGuest
::
NotifyChangeBreakpointOk
:
{
QDataStream
s
(
payload
);
...
...
@@ -515,6 +519,7 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
s
>>
id
;
breakHandler
()
->
notifyBreakpointChangeOk
(
id
);
}
break
;
case
IPCEngineGuest
::
NotifyChangeBreakpointFailed
:
{
QDataStream
s
(
payload
);
...
...
@@ -523,6 +528,7 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
s
>>
id
;
breakHandler
()
->
notifyBreakpointChangeFailed
(
id
);
}
break
;
case
IPCEngineGuest
::
NotifyBreakpointAdjusted
:
{
QDataStream
s
(
payload
);
...
...
@@ -532,6 +538,7 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
s
>>
id
>>
d
;
breakHandler
()
->
notifyBreakpointAdjusted
(
id
,
d
);
}
break
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment