QTextStream & QTextStream::operator<<(const char * string)This is an overloaded function.Writes the constant string pointed to by string to the stream. string is assumed to be in ISO-8859-1 encoding.
QChar::QChar(char ch)Constructs a QChar corresponding to ASCII/Latin-1 character ch.
C++ (Qt)QTextStream &QTextStream::operator<<(char c){ Q_D(QTextStream); CHECK_VALID_STREAM(*this); d->putString(QString(QChar::fromLatin1(c))); return *this;}