Re: strange QLineEdit problem in PyQt

2011-03-16 Thread Rafael Durán Castañeda
Just one remark about this line: QtGui.QWidget.__init__(self, parent) I think you should use this: super(Contract, self).__init__(parent) so you will be following PEP 3135 2011/3/16 taco > taco wrote: > > ah, I solved it myself. for completeness reasons. I had upgraded python for > reportla

Re: strange QLineEdit problem in PyQt

2011-03-16 Thread taco
taco wrote: ah, I solved it myself. for completeness reasons. I had upgraded python for reportlab which needed this python version, while still using a pyqt which was compiled for 2.6. After compilation and changing pythonpath to the right site-packages dir it's working > hi, > I have a form