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
Peter Kümmel 2012-10-23 09:03:15 +02:00 committed by The Qt Project
parent ccc4fbdf3f
commit 9764907240
4 changed files with 7 additions and 7 deletions

View File

@ -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

View File

@ -57,7 +57,7 @@
QT_BEGIN_NAMESPACE
#ifndef QT_NO_BIG_CODECS
#ifndef QT_NO_CODECS
class QIsciiCodec : public QTextCodec {
public:

View File

@ -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

View File

@ -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