| 894 | } |
| 895 | |
| 896 | int TabWidget::editorScrollValue() |
| 897 | { |
| 898 | if (auto editor = d->currentTextEditor()) |
| 899 | return editor->verticalScrollBar()->value(); |
| 900 | |
| 901 | return 0; |
| 902 | } |
| 903 | |
| 904 | void TabWidget::addBreakpoint(const QString &fileName, int line, bool enabled) |
| 905 | { |
no test coverage detected