[PyQt] memory can't be read

2009-07-10 Thread Mario Daniel Carugno
Hello, i was trying to run a pyqt application on windows. It works, but when i close it, the following error appears: The instruction at 0x018f9098 references memory at 0x00a8c448. The memory can't be read The message could be not exact in english since i'm translating it from spanish. I've

Re: [PyQt] memory can't be read

2009-07-10 Thread Arve Knudsen
This should simply mean there has been a memory error (segfault) in the application, and as such you'd need to debug in order to pinpoint it. On 7/10/09, Mario Daniel Carugno carug...@gmail.com wrote: Hello, i was trying to run a pyqt application on windows. It works, but when i close it, the

Re: [PyQt] memory can't be read

2009-07-10 Thread Arve Knudsen
Come to think of it, an idea might be to run PyQt example programs and see if they work properly, to rule out problems on that level. On 7/10/09, Arve Knudsen arve.knud...@gmail.com wrote: This should simply mean there has been a memory error (segfault) in the application, and as such you'd

Re: [PyQt] memory can't be read

2009-07-10 Thread Jason H
something in a QObject hierarchy that was already deleted? - Original Message From: Arve Knudsen arve.knud...@gmail.com To: Mario Daniel Carugno carug...@gmail.com; pyqt@riverbankcomputing.com Sent: Friday, July 10, 2009 4:41:40 PM Subject: Re: [PyQt] memory can't be read Come