[PyQt] deleting QTreeWidgetItem

Phil Thompson phil at riverbankcomputing.co.uk
Fri Sep 7 09:21:33 BST 2007


On Friday 07 September 2007, Michael Towers wrote:
> Hi all,
>
> Could someone confirm (or otherwise!) my understanding of the way PyQt4
> deals with management of Qt objects? If I want to delete a
> QTreeWidgetItem and all its children from a tree (and release all
> connected storage), is it enough to do the following?
>
>          p = item.parent()
>          p.removeChild(item)
> 	item = None
>
> (assuming item is the only python reference to the QTreeWidgetItem).

Correct.

Phil


More information about the PyQt mailing list