| 57 | } |
| 58 | |
| 59 | void SettingsGeneralControl::notifyNewGridStep(MyGUI::Widget* _sender, MyGUI::Widget* _new) |
| 60 | { |
| 61 | mGridStep = MyGUI::utility::parseInt(mGridEdit->getOnlyText()); |
| 62 | mGridStep = (std::max)(1, mGridStep); |
| 63 | mGridEdit->setCaption(MyGUI::utility::toString(mGridStep)); |
| 64 | } |
| 65 | |
| 66 | void SettingsGeneralControl::notifyNewGridStepAccept(MyGUI::EditBox* _sender) |
| 67 | { |
nothing calls this directly
no test coverage detected