| 66 | } |
| 67 | |
| 68 | bool PropertyInt2Control::isValidate() |
| 69 | { |
| 70 | MyGUI::UString value = mEdit->getOnlyText(); |
| 71 | |
| 72 | int value1 = 0; |
| 73 | int value2 = 0; |
| 74 | return MyGUI::utility::parseComplex(value, value1, value2); |
| 75 | } |
| 76 | |
| 77 | MyGUI::UString PropertyInt2Control::getClearValue() |
| 78 | { |
nothing calls this directly
no test coverage detected