| 1605 | } |
| 1606 | |
| 1607 | void mitk::MultiLabelSegmentation::SetAllLabelsLocked(bool locked) |
| 1608 | { |
| 1609 | auto setLock = [locked](Label* l) { l->SetLocked(locked); }; |
| 1610 | |
| 1611 | this->ApplyToLabels(this->GetAllLabelValues(), setLock); |
| 1612 | } |
| 1613 | |
| 1614 | void mitk::MultiLabelSegmentation::SetAllLabelsLockedByGroup(GroupIndexType group, bool locked) |
| 1615 | { |
nothing calls this directly
no test coverage detected