| 1055 | } |
| 1056 | |
| 1057 | QString WorkspaceWidget::cursorBehindText() const |
| 1058 | { |
| 1059 | Q_ASSERT(QThread::currentThread() == qApp->thread()); |
| 1060 | |
| 1061 | if (auto tabWidget = d->currentTabWidget()) |
| 1062 | return tabWidget->cursorBehindText(); |
| 1063 | |
| 1064 | return ""; |
| 1065 | } |
| 1066 | |
| 1067 | QStringList WorkspaceWidget::modifiedFiles() const |
| 1068 | { |
nothing calls this directly
no test coverage detected