Hmm thanks... except how I clear my form is using this:

Qt Code:
  1. QObjectList childrenList = children();
  2. childrenList.removeAt(childrenList.indexOf(DoNotDeleteMeObject));
  3. ...
  4. qDeleteAll(childrenList);
To copy to clipboard, switch view to plain text mode 

Is there an alternative for qDeleteAll() which uses deleteLater()?