| 1013 | } |
| 1014 | |
| 1015 | void TabWidget::cursorPosition(int *line, int *index) |
| 1016 | { |
| 1017 | if (!line || !index) |
| 1018 | return; |
| 1019 | |
| 1020 | if (auto editor = d->currentTextEditor()) |
| 1021 | editor->getCursorPosition(line, index); |
| 1022 | } |
| 1023 | |
| 1024 | TextEditor *TabWidget::currentEditor() const |
| 1025 | { |
no test coverage detected