mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +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:
parent
f6d08024e1
commit
b353b9b435
@ -68,6 +68,12 @@ is
|
|||||||
--- Purpose: Constructs a selection object defined by the selection mode IdMode.
|
--- 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.
|
-- 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;
|
Add (me : mutable;
|
||||||
aprimitive : SensitiveEntity from SelectBasics)
|
aprimitive : SensitiveEntity from SelectBasics)
|
||||||
---Purpose: Adds the sensitive primitive aprimitive to the list of
|
---Purpose: Adds the sensitive primitive aprimitive to the list of
|
||||||
|
@ -25,6 +25,19 @@ SelectMgr_Selection
|
|||||||
::SelectMgr_Selection (const Standard_Integer IdMode):
|
::SelectMgr_Selection (const Standard_Integer IdMode):
|
||||||
myMode(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
|
// Function: ADD
|
||||||
// Purpose :
|
// Purpose :
|
||||||
|
Loading…
x
Reference in New Issue
Block a user