MODIFIED: Widgets derived from CInterfaceGroup should now be deleted too properly.
This commit is contained in:
parent
836f3c9c2c
commit
b106d18c8b
1 changed files with 3 additions and 3 deletions
|
@ -41,9 +41,9 @@ namespace GUIEditor
|
||||||
if( e == NULL )
|
if( e == NULL )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
CInterfaceElement *p = e;
|
CInterfaceElement *p = e->getParent();
|
||||||
while( ( p != NULL ) && !p->isGroup() )
|
if( p == NULL )
|
||||||
p = p->getParent();
|
return;
|
||||||
|
|
||||||
CInterfaceGroup *g = dynamic_cast< CInterfaceGroup* >( p );
|
CInterfaceGroup *g = dynamic_cast< CInterfaceGroup* >( p );
|
||||||
if( g == NULL )
|
if( g == NULL )
|
||||||
|
|
Loading…
Reference in a new issue