| 326 | } |
| 327 | |
| 328 | void mitk::ROI::Element::RemoveProperty(const std::string& propertyKey, const std::string& contextName, bool fallBackOnDefaultContext) |
| 329 | { |
| 330 | if (!contextName.empty()) |
| 331 | { |
| 332 | this->RemoveProperty(propertyKey, std::stoul(contextName), fallBackOnDefaultContext); |
| 333 | return; |
| 334 | } |
| 335 | |
| 336 | m_DefaultProperties->RemoveProperty(propertyKey); |
| 337 | } |
| 338 | |
| 339 | void mitk::ROI::Element::RemoveProperty(const std::string& propertyKey, TimeStepType t, bool fallBackOnDefaultContext) |
| 340 | { |
no test coverage detected