Re: [Tutor] underlying C/C++ object has been deleted

2007-10-27 Thread David Boddie
On Thu Oct 25 06:45:38 CEST 2007, Lawrence Shafer wrote: > I am trying to convert a program with hand coded QT over to using UI > files from QT Designer. I am getting the error below and do not > understand what's going on. This error occurs when an object referred to by Python and Qt is delete

Re: [Tutor] underlying C/C++ object has been deleted

2007-10-25 Thread Lawrence Shafer
Here's the whole code. Any help appreciated! http://shaferlabs.pastebin.com/m32c82193 Also I was thinking I could set the progressbar to 64% like this. self.progressBar.setProperty("value",QtCore.QVariant(64)) but it doesn't work. (AttributeError: progressBar) I think it has something to do with

Re: [Tutor] underlying C/C++ object has been deleted

2007-10-25 Thread Alan Gauld
"Lawrence Shafer" <[EMAIL PROTECTED]> wrote > files from QT Designer. I am getting the error below and do not > understand what's going on. Neither do I but try debugging it to find out which object causes the error > File "atf.py", line 56, in open >if self.isUntitled and self.textBrowser

[Tutor] underlying C/C++ object has been deleted

2007-10-24 Thread Lawrence Shafer
I am trying to convert a program with hand coded QT over to using UI files from QT Designer. I am getting the error below and do not understand what's going on. I have a feeling I need to add self. to something in here, but I'm not sure what. Is this enough code for you to see whats going on??