| 37 | { |
| 38 | |
| 39 | UICCTextField* UICCTextField::create() |
| 40 | { |
| 41 | UICCTextField* ret = new UICCTextField(); |
| 42 | ret->autorelease(); |
| 43 | return ret; |
| 44 | } |
| 45 | |
| 46 | UICCTextField::UICCTextField() |
| 47 | : _maxLengthEnabled(false) |
nothing calls this directly
no test coverage detected