| 140 | } |
| 141 | |
| 142 | void DemoKeeper::decreaseFontHeight(MyGUI::Widget* _sender) |
| 143 | { |
| 144 | for (auto* edit : mEditBoxes) |
| 145 | { |
| 146 | edit->setFontHeight(edit->getFontHeight() - 1); |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | } // namespace demo |
| 151 |
nothing calls this directly
no test coverage detected