mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0023593: XCAFDoc_DocumentTool label must be removed from internal map upon closing the XDE document
This commit is contained in:
parent
a0d8a9fc54
commit
f898928aa0
@ -114,4 +114,9 @@ is
|
||||
Paste (me; into : mutable Attribute from TDF;
|
||||
RT : mutable RelocationTable from TDF);
|
||||
|
||||
Destroy (me: mutable) is virtual;
|
||||
---C++ : alias ~
|
||||
---Purpose: Unregisters the document holding this attribute from an
|
||||
-- internal global map of XDE documents.
|
||||
|
||||
end DocumentTool;
|
||||
|
@ -280,3 +280,23 @@ Standard_Boolean XCAFDoc_DocumentTool::IsXCAFDocument(const Handle(TDocStd_Docu
|
||||
{
|
||||
return RootLDocLMap.IsBound(D->Main().Root());
|
||||
}
|
||||
|
||||
|
||||
//=======================================================================
|
||||
//function : Destroy
|
||||
//purpose : Removal of the document from RootLDocLMap is necessary. Otherwise
|
||||
// there remains orphan labels and upon creation of a new
|
||||
// label with XCAFDoc_DocumentTool attribute that
|
||||
// orphan is attempted to get used (when hashes match) causing
|
||||
// an exception when trying to access its data framework.
|
||||
//=======================================================================
|
||||
|
||||
void XCAFDoc_DocumentTool::Destroy()
|
||||
{
|
||||
TDF_Label DocL = Label();
|
||||
if ( ! DocL.IsNull() ) {
|
||||
TDF_Label RootL = DocL.Root();
|
||||
if ( RootLDocLMap.IsBound( RootL ) )
|
||||
RootLDocLMap.UnBind( RootL );
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user