| 347 | } |
| 348 | |
| 349 | Widget* Widget::createWidgetRealT( |
| 350 | std::string_view _type, |
| 351 | std::string_view _skin, |
| 352 | const FloatCoord& _coord, |
| 353 | Align _align, |
| 354 | std::string_view _name) |
| 355 | { |
| 356 | return createWidgetT(_type, _skin, CoordConverter::convertFromRelative(_coord, getSize()), _align, _name); |
| 357 | } |
| 358 | |
| 359 | void Widget::_updateView() |
| 360 | { |
nothing calls this directly
no test coverage detected