The code is along the lines of this:
class Solver(QDialog):
def __init__(self, parent=None):
blabla
def solver(self):
return qlineedit1.text()
class access(QMainWindow):
prda = Solver().solver()
print prda
The problem is that prda is an empty string. If i put "print qlineedit1.text()" in the Solver class, the text is displayed as it should be. However, when "transferred" to a different class, the string is empty. The weirdest part that it is there - if I do type(prda), I get QString type output.
So, how would I get prda to assume the value of qlineedit1.text() ? I was thinking of writing the text to file in Solver class, and then reading it from access class, but there has to be another solution. By the way, the Solver class and the access class are two dialogs.
Help?
QStringout so it'll give aunicodeobject instead: use PySide, or do what riverbankcomputing.co.uk/static/Docs/PyQt4/html/… shows you. That and similar simplify so many things... – Chris Morgan Oct 14 '11 at 3:35Solver.__init__callssuper(Solver, self).__init__(parent)? – Chris Morgan Oct 14 '11 at 3:37