diff options
author | Frans Englich <frans.englich@nokia.com> | 2009-04-24 08:23:13 (GMT) |
---|---|---|
committer | Frans Englich <frans.englich@nokia.com> | 2009-04-24 10:42:40 (GMT) |
commit | 294f32f41da900ad3ae70e1546ea0057f8864d95 (patch) | |
tree | ce0155aff9e81cf518b5f6560b3a4d9716b4aa38 /src/corelib | |
parent | e09144d9ae2fbebaa5c6a2eeb7975a3a75ddbf0b (diff) | |
download | Qt-294f32f41da900ad3ae70e1546ea0057f8864d95.zip Qt-294f32f41da900ad3ae70e1546ea0057f8864d95.tar.gz Qt-294f32f41da900ad3ae70e1546ea0057f8864d95.tar.bz2 |
Alias for QUtf16Codec is wrong.
Requested/spotted by Nokia i18n team/Darpan.
Task-number: 252102
Reviewed-by: Denis
AutoTest: In this submit.
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/codecs/qutfcodec.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/corelib/codecs/qutfcodec.cpp b/src/corelib/codecs/qutfcodec.cpp index 281bf75..1ac592e 100644 --- a/src/corelib/codecs/qutfcodec.cpp +++ b/src/corelib/codecs/qutfcodec.cpp @@ -413,9 +413,7 @@ QByteArray QUtf16Codec::name() const QList<QByteArray> QUtf16Codec::aliases() const { - QList<QByteArray> list; - list << "ISO-10646-UCS-2"; - return list; + return QList<QByteArray>(); } int QUtf16BECodec::mibEnum() const |