mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-11 16:19:17 +05:00
INT PAL 0052273: Geometry object can be deleted only in active view
This commit is contained in:
parent
736b63e4a9
commit
c19429532e
@ -485,13 +485,14 @@ void GEOM_Displayer::Erase( const Handle(SALOME_InteractiveObject)& theIO,
|
|||||||
//=================================================================
|
//=================================================================
|
||||||
void GEOM_Displayer::Erase( GEOM::GEOM_BaseObject_ptr theObj,
|
void GEOM_Displayer::Erase( GEOM::GEOM_BaseObject_ptr theObj,
|
||||||
const bool forced,
|
const bool forced,
|
||||||
const bool updateViewer )
|
const bool updateViewer,
|
||||||
|
SALOME_View* theViewFrame)
|
||||||
{
|
{
|
||||||
std::string entry = getEntry( theObj );
|
std::string entry = getEntry( theObj );
|
||||||
if ( entry != "" )
|
if ( entry != "" )
|
||||||
{
|
{
|
||||||
Erase(new SALOME_InteractiveObject(entry.c_str(), "GEOM", getName(theObj).c_str()),
|
Erase(new SALOME_InteractiveObject(entry.c_str(), "GEOM", getName(theObj).c_str()),
|
||||||
forced, updateViewer);
|
forced, updateViewer, theViewFrame);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -105,7 +105,8 @@ public:
|
|||||||
|
|
||||||
void Erase ( GEOM::GEOM_BaseObject_ptr theObj,
|
void Erase ( GEOM::GEOM_BaseObject_ptr theObj,
|
||||||
const bool forced = false,
|
const bool forced = false,
|
||||||
const bool updateViewer = true );
|
const bool updateViewer = true,
|
||||||
|
SALOME_View* theViewFrame = 0);
|
||||||
|
|
||||||
void EraseWithChildren(const Handle(SALOME_InteractiveObject)& theIO,
|
void EraseWithChildren(const Handle(SALOME_InteractiveObject)& theIO,
|
||||||
const bool eraseOnlyChildren = false);
|
const bool eraseOnlyChildren = false);
|
||||||
|
@ -1011,7 +1011,7 @@ void GEOMToolsGUI::removeObjectWithChildren(_PTR(SObject) obj,
|
|||||||
QListIterator<SALOME_View*> it( views );
|
QListIterator<SALOME_View*> it( views );
|
||||||
while ( it.hasNext() )
|
while ( it.hasNext() )
|
||||||
if ( SALOME_View* view = it.next() )
|
if ( SALOME_View* view = it.next() )
|
||||||
disp->Erase(geomObj, true, view);
|
disp->Erase(geomObj, true, true, view);
|
||||||
|
|
||||||
// Remove object from Engine
|
// Remove object from Engine
|
||||||
// We can't directly remove object from engine. All we can do is to unpublish the object
|
// We can't directly remove object from engine. All we can do is to unpublish the object
|
||||||
|
Loading…
Reference in New Issue
Block a user