| 1235 | } |
| 1236 | |
| 1237 | Edit::Position WorkspaceWidget::cursorPosition() |
| 1238 | { |
| 1239 | Edit::Position pos; |
| 1240 | if (auto tabWidget = d->currentTabWidget()) |
| 1241 | tabWidget->cursorPosition(&pos.line, &pos.column); |
| 1242 | |
| 1243 | return pos; |
| 1244 | } |
| 1245 | |
| 1246 | QString WorkspaceWidget::lineText(const QString &fileName, int line) |
| 1247 | { |
nothing calls this directly
no test coverage detected