Hello,
I have a query list
QObjectList *Alist = BigFrame()->queryList( "QButton" ,0, false, false);
QObjectList *Blist = BigFrame()->queryList( "QLineEdit" ,0, false, false);
QObjectList *Clist = BigFrame()->queryList( "QComboBox" ,0, false, false);
I need to grab all children that are qbuttons, qlineedits or qcomboboxes. Is there a way to combine these 3 lists so that I can loop through the query list only once?
Thanks!
Jay
Bookmarks