| 1045 | } |
| 1046 | |
| 1047 | QString WorkspaceWidget::cursorBeforeText() const |
| 1048 | { |
| 1049 | Q_ASSERT(QThread::currentThread() == qApp->thread()); |
| 1050 | |
| 1051 | if (auto tabWidget = d->currentTabWidget()) |
| 1052 | return tabWidget->cursorBeforeText(); |
| 1053 | |
| 1054 | return ""; |
| 1055 | } |
| 1056 | |
| 1057 | QString WorkspaceWidget::cursorBehindText() const |
| 1058 | { |
nothing calls this directly
no test coverage detected