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

0024645: Pointer to the last is wrong for a tree node

- An extra call to DownCast() is removed for a performance reason.
- Information on last child is added to the Dump() method + fixed a problem of lost last child tree node on removal (detach) operation.
- Test case for issue CR24645
This commit is contained in:
vro 2014-03-06 13:31:59 +04:00 committed by bugmaster
parent f8c8ba7a6d
commit d5c3f40613

View File

@ -226,7 +226,7 @@ Standard_Boolean TDataStd_TreeNode::Remove ()
}
if (Father()->HasFirst()) {
if (Handle(TDataStd_TreeNode)::DownCast(this) == Father()->First()) {
if (this == Father()->First().operator->()) {
if (HasNext()) {
Father()->SetFirst(Next());
}