| 338 | } |
| 339 | |
| 340 | void QmitkMultiLabelInspector::SetSelectedLabels(const LabelValueVectorType& selectedLabels) |
| 341 | { |
| 342 | if (mitk::Equal(this->GetSelectedLabels(), selectedLabels)) |
| 343 | { |
| 344 | return; |
| 345 | } |
| 346 | |
| 347 | this->UpdateSelectionModel(selectedLabels); |
| 348 | m_LastValidSelectedLabels = selectedLabels; |
| 349 | } |
| 350 | |
| 351 | void QmitkMultiLabelInspector::UpdateSelectionModel(const LabelValueVectorType& selectedLabels) |
| 352 | { |
no test coverage detected