MCPcopy Create free account
hub / github.com/FreeCAD/FreeCAD / touchTreeOwner

Method touchTreeOwner

src/Mod/TechDraw/App/DrawView.cpp:149–160  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

147}
148
149void DrawView::touchTreeOwner(App::DocumentObject *owner) const
150{
151 auto ownerView = dynamic_cast<DrawView *>(owner);
152 if (ownerView) {
153 ownerView->touch();
154 }
155 else { // If no owner is specified, touch all parent pages
156 for (auto page : findAllParentPages()) {
157 page->touch();
158 }
159 }
160}
161
162void DrawView::onBeforeChange(const App::Property *prop)
163{

Callers

nothing calls this directly

Calls 1

touchMethod · 0.45

Tested by

no test coverage detected