| 902 | } |
| 903 | |
| 904 | void TabWidget::addBreakpoint(const QString &fileName, int line, bool enabled) |
| 905 | { |
| 906 | if (auto editor = d->findEditor(fileName)) |
| 907 | editor->addBreakpoint(line, enabled); |
| 908 | } |
| 909 | |
| 910 | void TabWidget::removeBreakpoint(const QString &fileName, int line) |
| 911 | { |
no test coverage detected