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