| 610 | } |
| 611 | |
| 612 | QModelIndex QmitkMultiLabelTreeModel::indexOfGroup(mitk::MultiLabelSegmentation::GroupIndexType groupIndex) const |
| 613 | { |
| 614 | auto relevantItem = GetGroupItem(groupIndex, this->m_RootItem.get()); |
| 615 | |
| 616 | if (nullptr == relevantItem) QModelIndex(); |
| 617 | |
| 618 | return GetIndexByItem(relevantItem, this); |
| 619 | } |
| 620 | |
| 621 | QModelIndex QmitkMultiLabelTreeModel::parent(const QModelIndex &child) const |
| 622 | { |
nothing calls this directly
no test coverage detected