| 286 | } |
| 287 | |
| 288 | void OpenDocumentSet::documentUrlChanged(IDocument* doc, const QUrl& previousUrl) |
| 289 | { |
| 290 | Q_D(WatchedDocumentSet); |
| 291 | |
| 292 | if (doc->textDocument()) { |
| 293 | d->renameDocument(IndexedString{previousUrl}, IndexedString{doc->url()}, DoUpdate | DoEmit); |
| 294 | } |
| 295 | } |
| 296 | |
| 297 | ProblemScope OpenDocumentSet::scope() const |
| 298 | { |
nothing calls this directly
no test coverage detected