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