| 451 | } |
| 452 | |
| 453 | void mitk::DataNode::SetStringProperty(const char *propertyKey, |
| 454 | const char *stringValue, |
| 455 | const mitk::BaseRenderer *renderer /*=nullptr*/) |
| 456 | { |
| 457 | GetPropertyList(renderer)->SetProperty(propertyKey, mitk::StringProperty::New(stringValue)); |
| 458 | } |
| 459 | |
| 460 | void mitk::DataNode::SetProperty(const char *propertyKey, |
| 461 | BaseProperty *propertyValue, |
nothing calls this directly
no test coverage detected