mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 17:29:10 +00:00
MODIFIED: Widgets derived from CInterfaceGroup should now be deleted too properly.
This commit is contained in:
parent
bf53503fc1
commit
5bd77c58b5
1 changed files with 3 additions and 3 deletions
|
@ -41,9 +41,9 @@ namespace GUIEditor
|
|||
if( e == NULL )
|
||||
return;
|
||||
|
||||
CInterfaceElement *p = e;
|
||||
while( ( p != NULL ) && !p->isGroup() )
|
||||
p = p->getParent();
|
||||
CInterfaceElement *p = e->getParent();
|
||||
if( p == NULL )
|
||||
return;
|
||||
|
||||
CInterfaceGroup *g = dynamic_cast< CInterfaceGroup* >( p );
|
||||
if( g == NULL )
|
||||
|
|
Loading…
Reference in a new issue