summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/lldb/ipcenginehost.h
diff options
context:
space:
mode:
authorArvid Ephraim Picciani <arvid.picciani@nokia.com>2010-11-22 13:09:01 +0100
committerArvid Ephraim Picciani <arvid.picciani@nokia.com>2010-11-22 13:10:26 +0100
commitb2849c306f82256118891367385daadc3c32ebc0 (patch)
treeb7a1a487deae5de80823abf9ef11d47536d8b534 /src/plugins/debugger/lldb/ipcenginehost.h
parent9be36be951ebcdb46e20dd91fe12d96f6357bea7 (diff)
downloadqt-creator-b2849c306f82256118891367385daadc3c32ebc0.tar.gz
Adapt IpcEngine to breakpoint handling changes
Diffstat (limited to 'src/plugins/debugger/lldb/ipcenginehost.h')
-rw-r--r--src/plugins/debugger/lldb/ipcenginehost.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/debugger/lldb/ipcenginehost.h b/src/plugins/debugger/lldb/ipcenginehost.h
index 9a82fcf769..a36508bdf8 100644
--- a/src/plugins/debugger/lldb/ipcenginehost.h
+++ b/src/plugins/debugger/lldb/ipcenginehost.h
@@ -104,9 +104,9 @@ public:
void activateFrame(int index);
void selectThread(int index);
void fetchDisassembler(DisassemblerViewAgent *);
- void addBreakpoint(const BreakpointParameters &bp);
- void removeBreakpoint(quint64 id);
- void changeBreakpoint(const BreakpointParameters &bp);
+ void insertBreakpoint(BreakpointId id);
+ void removeBreakpoint(BreakpointId id);
+ void changeBreakpoint(BreakpointId id);
void updateWatchData(const WatchData &data,
const WatchUpdateFlags &flags = WatchUpdateFlags());