| 1435 | } |
| 1436 | |
| 1437 | void DocumentObject::unsetupObject() |
| 1438 | { |
| 1439 | // call all extensions |
| 1440 | auto vector = getExtensionsDerivedFromType<App::DocumentObjectExtension>(); |
| 1441 | for (auto ext : vector) { |
| 1442 | ext->onExtendedUnsetupObject(); |
| 1443 | } |
| 1444 | } |
| 1445 | |
| 1446 | void App::DocumentObject::_removeBackLink(DocumentObject* rmvObj) |
| 1447 | { |
nothing calls this directly
no test coverage detected