| 301 | } |
| 302 | |
| 303 | UITextView* UITextInput::setText( const String& text ) { |
| 304 | UITextView::setText( text ); |
| 305 | |
| 306 | mDoc.reset(); |
| 307 | mDoc.textInput( text ); |
| 308 | |
| 309 | return this; |
| 310 | } |
| 311 | |
| 312 | const String& UITextInput::getText() const { |
| 313 | return UITextView::getText(); |