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

0025093: Visualization - deletion of SelectMgr_SelectableObject does not invalidate owners

-Unstaged useless changes from CR0025093
-Now handles to Entity_owner are nullified in SelectMgr_Selection destructor

-Code formatting
This commit is contained in:
isz 2014-09-18 14:43:12 +04:00 committed by bugmaster
parent f6d08024e1
commit b353b9b435
2 changed files with 19 additions and 0 deletions

View File

@ -68,6 +68,12 @@ is
--- Purpose: Constructs a selection object defined by the selection mode IdMode.
-- The default setting 0 is the selection mode for a shape in its entirety.
Destroy (me : mutable) is static;
---Level: Public
---Purpose:
---Category: Methods to modify the class definition
---C++: alias ~
Add (me : mutable;
aprimitive : SensitiveEntity from SelectBasics)
---Purpose: Adds the sensitive primitive aprimitive to the list of

View File

@ -25,6 +25,19 @@ SelectMgr_Selection
::SelectMgr_Selection (const Standard_Integer IdMode):
myMode(IdMode)
{}
//==================================================
// Function: Destroy
// Purpose :
//==================================================
void SelectMgr_Selection::Destroy()
{
for (SelectBasics_ListIteratorOfListOfSensitive anIt(myentities); anIt.More(); anIt.Next())
{
anIt.Value()->Set (NULL);
}
}
//==================================================
// Function: ADD
// Purpose :