| 271 | } |
| 272 | |
| 273 | void QmitkPropertyItemModel::OnPropertyModified(const itk::Object *property, const itk::EventObject &) |
| 274 | { |
| 275 | QModelIndex index = this->FindProperty(static_cast<const mitk::BaseProperty *>(property)); |
| 276 | |
| 277 | if (index != QModelIndex()) |
| 278 | emit dataChanged(index, index); |
| 279 | } |
| 280 | |
| 281 | QModelIndex QmitkPropertyItemModel::parent(const QModelIndex &child) const |
| 282 | { |
nothing calls this directly
no test coverage detected