diff options
author | hjk <[email protected]> | 2009-06-11 13:40:44 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2009-06-11 13:41:19 +0200 |
commit | 93ab95bc99106607dec888e5c748228901731b9a (patch) | |
tree | f2310b910a381ee3b811e525f2f76cfd7127b73b /src/plugins/debugger/breakwindow.h | |
parent | 0f9b9b049414d263fc018ee625cfa5afa1c43f64 (diff) |
debugger: let the breakpoint view handle multiple items at once
Diffstat (limited to 'src/plugins/debugger/breakwindow.h')
-rw-r--r-- | src/plugins/debugger/breakwindow.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/plugins/debugger/breakwindow.h b/src/plugins/debugger/breakwindow.h index ec82dc52a74..3aa049af8f6 100644 --- a/src/plugins/debugger/breakwindow.h +++ b/src/plugins/debugger/breakwindow.h @@ -61,8 +61,10 @@ protected: void keyPressEvent(QKeyEvent *ev); private: - void deleteBreakpoint(const QModelIndex &idx); - void editCondition(const QModelIndex &idx); + void deleteBreakpoints(const QModelIndexList &list); + void editConditions(const QModelIndexList &list); + void setBreakpointsEnabled(const QModelIndexList &list, bool enabled); + void setBreakpointsFullPath(const QModelIndexList &list, bool fullpath); bool m_alwaysResizeColumnsToContents; }; |