| 4313 | } |
| 4314 | |
| 4315 | void TextDocument::notifyDocumentReloaded() { |
| 4316 | Lock l( mClientsMutex ); |
| 4317 | for ( auto& client : mClients ) { |
| 4318 | client->onDocumentReloaded( this ); |
| 4319 | } |
| 4320 | } |
| 4321 | |
| 4322 | void TextDocument::notifyDocumentReset() { |
| 4323 | Lock l( mClientsMutex ); |
nothing calls this directly
no test coverage detected