| 1077 | } |
| 1078 | |
| 1079 | void TabWidget::gotoPosition(int line, int column) |
| 1080 | { |
| 1081 | if (auto editor = d->currentTextEditor()) |
| 1082 | editor->gotoPosition(editor->positionFromLineIndex(line, column)); |
| 1083 | } |
| 1084 | |
| 1085 | void TabWidget::saveFile(const QString &fileName) |
| 1086 | { |
no test coverage detected