| 1612 | } |
| 1613 | |
| 1614 | void mitk::MultiLabelSegmentation::SetAllLabelsLockedByGroup(GroupIndexType group, bool locked) |
| 1615 | { |
| 1616 | auto setLock = [locked](Label* l) { l->SetLocked(locked); }; |
| 1617 | |
| 1618 | this->ApplyToLabels(this->GetLabelValuesByGroup(group), setLock); |
| 1619 | } |
| 1620 | |
| 1621 | void mitk::MultiLabelSegmentation::SetAllLabelsLockedByName(GroupIndexType group, const std::string_view name, bool locked) |
| 1622 | { |
nothing calls this directly
no test coverage detected