| 818 | } |
| 819 | |
| 820 | void UITextInput::cut() { |
| 821 | getUISceneNode()->getWindow()->getClipboard()->setText( mDoc.getSelectedText().toUtf8() ); |
| 822 | mDoc.deleteSelection(); |
| 823 | } |
| 824 | |
| 825 | void UITextInput::paste() { |
| 826 | String pasted( getUISceneNode()->getWindow()->getClipboard()->getText() ); |
nothing calls this directly
no test coverage detected