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