| 3840 | } |
| 3841 | |
| 3842 | void UICodeEditor::setHighlightWord( const TextSearchParams& highlightWord ) { |
| 3843 | if ( mHighlightWord != highlightWord ) { |
| 3844 | mHighlightWord = highlightWord; |
| 3845 | updateHighlightWordCache(); |
| 3846 | invalidateDraw(); |
| 3847 | } |
| 3848 | } |
| 3849 | |
| 3850 | const TextRange& UICodeEditor::getHighlightTextRange() const { |
| 3851 | return mHighlightTextRange; |
no outgoing calls
no test coverage detected