| 174 | } |
| 175 | |
| 176 | void QmitkDataStorageComboBox::RemoveNode(int index) |
| 177 | { |
| 178 | if (this->HasIndex(index)) |
| 179 | { |
| 180 | RemoveNodeAndPropertyLists(index); |
| 181 | // remove node name from combobox |
| 182 | this->removeItem(index); |
| 183 | } |
| 184 | } |
| 185 | |
| 186 | void QmitkDataStorageComboBox::RemoveNode(const mitk::DataNode *dataNode) |
| 187 | { |
no test coverage detected