Hi!!!

First sorry if this question had been asked yet, but I didn't find a post like this in the forum...sorry!!

Well, I need convert a char array in a Qstring because I want show the text in a LineEdit.

For example:
char message[20] ="Hello World"

convert in a Qstring message2 then:
QLineEdit lineMessage = new QLineEdit;
lineMessage -> setText(message2);

Thanks!!!!!