| 132 | } |
| 133 | |
| 134 | void QmitkMultiLabelManager::OnSelectedLabelChanged(const LabelValueVectorType& labels) |
| 135 | { |
| 136 | this->UpdateControls(); |
| 137 | if (labels.empty() || labels.size() > 1) return; |
| 138 | |
| 139 | emit CurrentSelectionChanged(labels); |
| 140 | } |
| 141 | |
| 142 | QStringList &QmitkMultiLabelManager::GetLabelStringList() |
| 143 | { |
nothing calls this directly
no test coverage detected