diff options
author | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-08-20 05:57:14 (GMT) |
---|---|---|
committer | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-08-20 05:57:14 (GMT) |
commit | e49f978b16f38bf51eb631e5bc04e46f4d8bdb9d (patch) | |
tree | b626eea5bd076016781ff3edb2931e116bdc2a04 | |
parent | 0af5e650d2e4a776c4c60f6ac3819605054663df (diff) | |
download | Qt-e49f978b16f38bf51eb631e5bc04e46f4d8bdb9d.zip Qt-e49f978b16f38bf51eb631e5bc04e46f4d8bdb9d.tar.gz Qt-e49f978b16f38bf51eb631e5bc04e46f4d8bdb9d.tar.bz2 |
Instantiate the CP949 codec when building with -no-iconv
Otherwise this codec would not be available.
-rw-r--r-- | src/corelib/codecs/qtextcodec.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/corelib/codecs/qtextcodec.cpp b/src/corelib/codecs/qtextcodec.cpp index b150e22..52c507d 100644 --- a/src/corelib/codecs/qtextcodec.cpp +++ b/src/corelib/codecs/qtextcodec.cpp @@ -696,6 +696,7 @@ static void setup() (void)new QJisCodec; (void)new QSjisCodec; (void)new QEucKrCodec; + (void)new QCP949Codec; (void)new QBig5Codec; (void)new QBig5hkscsCodec; # endif // QT_NO_ICONV && !QT_BOOTSTRAPPED |