hi,
just a basic question.
just to confirm im asking.

what will be the lifetime of the lineedit ?
Qt Code:
  1. foreach(QLineEdit* le1,qw->findChildren<QLineEdit*>())
  2. {
  3. le1->clear();
  4. }
To copy to clipboard, switch view to plain text mode 

im using le1->clear() for clearing the lineedit content.

i want to know, le1 will be deleted @ the end of the brace right?
or do i need to delete?
Bala