from
Fabio Zadrozny <fabioz at esss dot com dot br>
cc
Sylvain Thenault <syt at logilab dot fr>
subject
Another problem (related to previous - I think)
date
I think this bug is related to the same problem I has with math...2005/01/27 16:27
When I have the code:
------------------------------------
from qt import *
class Test(QWidget):
def test1(self):
self.setEnabled(False)
------------------------------------
I get the error:
ID:E0201 Test.test1: Access to undefined member 'setEnabled'
However if I have the code:
------------------------------------
import qt
class Test(qt.QWidget):
def test1(self):
self.setEnabled(False)
------------------------------------
There is no error.
Oh, I also want to thank you for the support you've been giving me... And
compliment you, because PyLint is working very well with my code (aside from
the minor problems I'm having, that you are solving really fast :-) ).
[]s
Fabio Zadrozny
------------------------------------------------------
Software Developer
ESSS - Engineering Simulation and Scientific Software
www.esss.com.br
