| 1151 | } |
| 1152 | |
| 1153 | void QmitkMultiLabelTreeModel::OnGroupRemoved(GroupIndexType groupIndex) |
| 1154 | { |
| 1155 | if (m_ShowGroups) |
| 1156 | { |
| 1157 | m_ModelUpdateOngoing = true; |
| 1158 | this->beginRemoveRows(QModelIndex(), groupIndex, groupIndex); |
| 1159 | auto root = m_RootItem.get(); |
| 1160 | root->RemoveChild(groupIndex); |
| 1161 | this->endRemoveRows(); |
| 1162 | m_ModelUpdateOngoing = false; |
| 1163 | emit modelChanged(); |
| 1164 | } |
| 1165 | } |
| 1166 | |
| 1167 | void QmitkMultiLabelTreeModel::SetAllowVisibilityModification(bool vmod) |
| 1168 | { |
no test coverage detected