| 3852 | } |
| 3853 | |
| 3854 | void UICodeEditor::setHighlightTextRange( const TextRange& highlightSelection ) { |
| 3855 | if ( highlightSelection != mHighlightTextRange ) { |
| 3856 | mHighlightTextRange = highlightSelection; |
| 3857 | invalidateDraw(); |
| 3858 | } |
| 3859 | } |
| 3860 | |
| 3861 | void UICodeEditor::registerPlugin( UICodeEditorPlugin* plugin ) { |
| 3862 | auto it = std::find( mPlugins.begin(), mPlugins.end(), plugin ); |
no outgoing calls
no test coverage detected