| 470 | } |
| 471 | |
| 472 | bool GeoFeatureGroupExtension::areLinksValid(const DocumentObject* obj) |
| 473 | { |
| 474 | |
| 475 | if (!obj) { |
| 476 | return true; |
| 477 | } |
| 478 | |
| 479 | std::vector<App::Property*> list; |
| 480 | obj->getPropertyList(list); |
| 481 | for (App::Property* prop : list) { |
| 482 | if (!isLinkValid(prop)) { |
| 483 | return false; |
| 484 | } |
| 485 | } |
| 486 | |
| 487 | return true; |
| 488 | } |
| 489 | |
| 490 | bool GeoFeatureGroupExtension::isLinkValid(App::Property* prop) |
| 491 | { |
nothing calls this directly
no test coverage detected