1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0025501: TNaming::Displace calls itself recursively with default parameter.

Patch to fix misprint in method Displace ().
This commit is contained in:
szy 2015-03-04 14:58:37 +03:00 committed by bugmaster
parent 9a5a19e98f
commit 076b125a90

View File

@ -398,7 +398,7 @@ void TNaming::Displace (const TDF_Label& L,
}
}
for (TDF_ChildIterator ciL(L); ciL.More(); ciL.Next()) {
Displace (ciL.Value(),Loc);
Displace (ciL.Value(), Loc, WithOld);
}
}