| 908 | } |
| 909 | |
| 910 | void TabWidget::removeBreakpoint(const QString &fileName, int line) |
| 911 | { |
| 912 | if (auto editor = d->findEditor(fileName)) |
| 913 | editor->removeBreakpoint(line); |
| 914 | } |
| 915 | |
| 916 | void TabWidget::setBreakpointEnabled(const QString &fileName, int line, bool enabled) |
| 917 | { |
no test coverage detected