Definition at line 77 of file qstringbuilder.h.
#include <qstringbuilder.h>

Static Protected Member Functions |
|
| static void | convertFromAscii (const char *a, int len, QChar *&out) |
| static void | convertFromAscii (char a, QChar *&out) |
| static void convertFromAscii | ( | const char * | a, |
| int | len, | ||
| QChar *& | out | ||
| ) | [static, protected] |
| static void convertFromAscii | ( | char | a, |
| QChar *& | out | ||
| ) | [inline, static, protected] |
Definition at line 82 of file qstringbuilder.h.
{
#ifndef QT_NO_TEXTCODEC
if (QString::codecForCStrings)
*out++ = QChar::fromAscii(a);
else
#endif
*out++ = QLatin1Char(a);
}