| 803 | } |
| 804 | |
| 805 | void WorkspaceWidgetPrivate::handleAddBreakpoint(const QString &fileName, int line, bool enabled) |
| 806 | { |
| 807 | for (auto tabWidget : tabWidgetList) |
| 808 | tabWidget->addBreakpoint(fileName, line, enabled); |
| 809 | } |
| 810 | |
| 811 | void WorkspaceWidgetPrivate::handleRemoveBreakpoint(const QString &fileName, int line) |
| 812 | { |
nothing calls this directly
no test coverage detected