| 722 | } |
| 723 | |
| 724 | void TextEditorPrivate::resetThemeColor() |
| 725 | { |
| 726 | if (q->lexer()) { |
| 727 | q->lexer()->resetStyle(); |
| 728 | q->setLexer(q->lexer()); |
| 729 | } |
| 730 | |
| 731 | if (languageClient) |
| 732 | languageClient->refreshTokens(); |
| 733 | |
| 734 | updateColorTheme(); |
| 735 | } |
| 736 | |
| 737 | void TextEditorPrivate::onDwellStart(int position, int x, int y) |
| 738 | { |
nothing calls this directly
no test coverage detected