| 920 | } |
| 921 | |
| 922 | void TabWidget::toggleBreakpoint() |
| 923 | { |
| 924 | auto editor = d->currentTextEditor(); |
| 925 | if (editor && editor->hasFocus()) |
| 926 | editor->toggleBreakpoint(); |
| 927 | } |
| 928 | |
| 929 | void TabWidget::clearAllBreakpoints() |
| 930 | { |
no test coverage detected