| 343 | } |
| 344 | |
| 345 | void LayoutRow::setHelp(Msg helpId) { |
| 346 | this->help = getTranslation(helpId, false); |
| 347 | } |
| 348 | |
| 349 | std::shared_ptr<LayoutComboboxControl> LayoutRow::addComboBox(const std::vector<ComboboxItem>& options, int selected) { |
| 350 | std::shared_ptr<LayoutComboboxControl> control = std::make_shared<LayoutComboboxControl>(shared_from_this()); |
no test coverage detected