Hello, when ever I make a QTextEdit object I can never get it's text to a QString nor a normal string. In the help pages I got this information that to do what i need we use the QTextEdit::text() method and that doesn't work, i tried a line like this:

//str is a QString
//txt is a QTextEdit

str = txt.text();

Obviously it must be a little more complicated then that.

Thank for now.