PDA

View Full Version : I don't see the output string



8Observer8
29th August 2013, 12:33
Hi,

I don't see the output string.

9502

Thank you!

Santosh Reddy
29th August 2013, 13:02
Use one of the following


teLog->append("Reading: " + QString::number(socket->bytesAvailable()));
or
teLog->append(QString("Reading: %1").arg(socket->bytesAvailable()));

8Observer8
29th August 2013, 13:11
Thank you very much :D