bool Project::hasParentObject( QObject *o ) { for ( QObject *p = objs.first(); p; p = objs.next() ) { QObject *c = p->child( o->name(), o->className() ); if ( c ) return TRUE; } return FALSE; }
bool QuickInterpreter::hasTopLevelParent( QObject *o ) { for ( QObject *p = toplevel->first(); p; p = toplevel->next() ) { QObject *c = p->child( o->name(), o->className() ); if ( c ) return TRUE; } return FALSE; }