| 221 | } |
| 222 | |
| 223 | void QmitkPropertiesTableModel::PropertyModified(const itk::Object *caller, const itk::EventObject & /*event*/) |
| 224 | { |
| 225 | if (!m_BlockEvents) |
| 226 | { |
| 227 | m_BlockEvents = true; |
| 228 | int row = this->FindProperty(dynamic_cast<const mitk::BaseProperty *>(caller)); |
| 229 | |
| 230 | QModelIndex indexOfChangedProperty = index(row, 1); |
| 231 | |
| 232 | emit dataChanged(indexOfChangedProperty, indexOfChangedProperty); |
| 233 | m_BlockEvents = false; |
| 234 | } |
| 235 | } |
| 236 | |
| 237 | void QmitkPropertiesTableModel::PropertyDelete(const itk::Object *caller, const itk::EventObject & /*event*/) |
| 238 | { |
nothing calls this directly
no test coverage detected