| 814 | } |
| 815 | |
| 816 | void UITextInput::copy() { |
| 817 | getUISceneNode()->getWindow()->getClipboard()->setText( mDoc.getSelectedText().toUtf8() ); |
| 818 | } |
| 819 | |
| 820 | void UITextInput::cut() { |
| 821 | getUISceneNode()->getWindow()->getClipboard()->setText( mDoc.getSelectedText().toUtf8() ); |
nothing calls this directly
no test coverage detected