| 117 | } |
| 118 | |
| 119 | bool PropertyFieldPosition::onCheckValue() |
| 120 | { |
| 121 | bool success = true; |
| 122 | |
| 123 | if (EditorWidgets::getInstance().find(mCurrentWidget)->getRelativeMode()) |
| 124 | success = utility::checkParse<float>(mField, 4); |
| 125 | else |
| 126 | success = utility::checkParse<int>(mField, 4); |
| 127 | |
| 128 | return success; |
| 129 | } |
| 130 | |
| 131 | MyGUI::IntSize PropertyFieldPosition::getContentSize() |
| 132 | { |
nothing calls this directly
no test coverage detected