| 731 | } |
| 732 | |
| 733 | QString QCodeEditor::wordUnderCursor() const |
| 734 | { |
| 735 | auto tc = textCursor(); |
| 736 | tc.select(QTextCursor::WordUnderCursor); |
| 737 | return tc.selectedText(); |
| 738 | } |
| 739 | |
| 740 | void QCodeEditor::insertFromMimeData(const QMimeData *source) |
| 741 | { |
nothing calls this directly
no test coverage detected