Enable module build with QT_NO_CODECS
Change-Id: I27239384a7676a81495a9d3f7484975d2f277e8c Reviewed-by: Peter Kümmel <syntheticpp@gmx.net> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
This commit is contained in:
parent
c7c9daa161
commit
a33d3a7136
@ -369,10 +369,12 @@ static QTextCodec *loadQtCodec(const char *name)
|
||||
return new QUtf32BECodec;
|
||||
if (!strcmp(name, "UTF-32LE"))
|
||||
return new QUtf32LECodec;
|
||||
#ifndef QT_NO_CODECS
|
||||
if (!strcmp(name, "TSCII"))
|
||||
return new QTsciiCodec;
|
||||
if (!qstrnicmp(name, "iscii", 5))
|
||||
return QIsciiCodec::create(name);
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user