| 3596 | } |
| 3597 | |
| 3598 | void TextDocument::stopActiveFindAll() { |
| 3599 | Lock l( mStopFlagsMutex ); |
| 3600 | for ( const auto& stopFlag : mStopFlags ) |
| 3601 | *stopFlag.second.get() = true; |
| 3602 | } |
| 3603 | |
| 3604 | bool TextDocument::isDoingTextInput() const { |
| 3605 | return mDoingTextInput; |
no test coverage detected