Using PyQt Version: 4.6-1, I found this strange thing when I try to create a new QMovie, in response to a signal emit.<br><br>    self._movie = QMovie(self)<br>traceback (most recent call last):<br>  File "/home/rats-user/rats-dev/build/py/ratsApp/ui/IconStuff.py", line 123, in setActive<br>
    self._setActiveMethod(active)<br>  File "/home/rats-user/rats-dev/build/py/ratsApp/ui/IconStuff.py", line 131, in _setActiveMovie<br>    self._createMovie()<br>  File "/home/rats-user/rats-dev/build/py/ratsApp/ui/IconStuff.py", line 161, in _createMovie<br>
    self._movie = QMovie(self)<br>RuntimeError: underlying C/C++ object has been deleted<br><br>I'm not sure I understand why I am seeing this at object creation time.<br>Any clues?<br><br>