Static Protected Member Functions

QAbstractConcatenable Struct Reference

Search for all occurrences

Detailed Description

Definition at line 77 of file qstringbuilder.h.

#include <qstringbuilder.h>

Inheritance diagram for QAbstractConcatenable:
Inheritance graph
[legend]

List of all members.

Static Protected Member Functions

static void  convertFromAscii (const char *a, int len, QChar *&out)
static void  convertFromAscii (char a, QChar *&out)

Member Function Documentation

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);
    }

The documentation for this struct was generated from the following file: