| 321 | } |
| 322 | |
| 323 | std::shared_ptr<LayoutSeparatorControl> LayoutSection::addSeparator() { |
| 324 | std::shared_ptr<LayoutRow> row = this->addRow(Msg::NONE, Msg::NONE); |
| 325 | return row->addSeparator(); |
| 326 | } |
| 327 | |
| 328 | std::shared_ptr<LayoutButtonControl> LayoutSection::addButton(Msg labelId, Msg helpId, BString buttonLabel) { |
| 329 | std::shared_ptr<LayoutRow> row = this->addRow(labelId, helpId); |
no test coverage detected