| 4390 | } |
| 4391 | |
| 4392 | void TextDocument::notifyDocumentLineMove( const Int64& fromLine, const Int64& toLine, |
| 4393 | const Int64& numLines ) { |
| 4394 | Lock l( mClientsMutex ); |
| 4395 | for ( auto& client : mClients ) { |
| 4396 | client->onDocumentLineMove( fromLine, toLine, numLines ); |
| 4397 | } |
| 4398 | } |
| 4399 | |
| 4400 | void TextDocument::escape() { |
| 4401 | BoolScopedOpOptional op( !mDoingTextInput, mDoingTextInput, true ); |
nothing calls this directly
no test coverage detected