QTscii and QIscii are not big codecs
This fixes the build when QT_NO_BIG_CODECS is defined. Change-Id: I832fb8ba5df6c4a6c1db9bdaecc498690357a56a Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>bb10
parent
ccc4fbdf3f
commit
9764907240
|
|
@ -42,7 +42,7 @@
|
|||
#include "qtextcodec_p.h"
|
||||
#include "qlist.h"
|
||||
|
||||
#ifndef QT_NO_BIG_CODECS
|
||||
#ifndef QT_NO_CODECS
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
|
|
@ -293,4 +293,4 @@ QString QIsciiCodec::convertToUnicode(const char* chars, int len, ConverterState
|
|||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif // QT_NO_BIG_CODECS
|
||||
#endif // QT_NO_CODECS
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@
|
|||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
#ifndef QT_NO_BIG_CODECS
|
||||
#ifndef QT_NO_CODECS
|
||||
|
||||
class QIsciiCodec : public QTextCodec {
|
||||
public:
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@
|
|||
#include "qtsciicodec_p.h"
|
||||
#include "qlist.h"
|
||||
|
||||
#ifndef QT_NO_BIG_CODECS
|
||||
#ifndef QT_NO_CODECS
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
|
|
@ -496,4 +496,4 @@ static unsigned int qt_TSCIIToUnicode(uint code, uint *s)
|
|||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif // QT_NO_BIG_CODECS
|
||||
#endif // QT_NO_CODECS
|
||||
|
|
|
|||
|
|
@ -86,7 +86,7 @@
|
|||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
#ifndef QT_NO_BIG_CODECS
|
||||
#ifndef QT_NO_CODECS
|
||||
|
||||
class QTsciiCodec : public QTextCodec {
|
||||
public:
|
||||
|
|
@ -99,7 +99,7 @@ public:
|
|||
QByteArray convertFromUnicode(const QChar *, int, ConverterState *) const;
|
||||
};
|
||||
|
||||
#endif // QT_NO_BIG_CODECS
|
||||
#endif // QT_NO_CODECS
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue