| 316 | } |
| 317 | |
| 318 | std::shared_ptr<LayoutTextControl> LayoutSection::addText(Msg labelId, Msg helpId, BString text) { |
| 319 | std::shared_ptr<LayoutRow> row = this->addRow(labelId, helpId); |
| 320 | return row->addText(text); |
| 321 | } |
| 322 | |
| 323 | std::shared_ptr<LayoutSeparatorControl> LayoutSection::addSeparator() { |
| 324 | std::shared_ptr<LayoutRow> row = this->addRow(Msg::NONE, Msg::NONE); |
no test coverage detected