summaryrefslogtreecommitdiffstats
path: root/src/corelib/codecs/qeuckrcodec.cpp
diff options
context:
space:
mode:
authorTasuku Suzuki <tasuku.suzuki@nokia.com>2012-06-01 12:42:50 +0900
committerQt by Nokia <qt-info@nokia.com>2012-06-14 05:26:26 +0200
commit5a7937bb042a006482ed50f7b7de437e15e593ce (patch)
tree2dec8cc779774fb72cc58903f1f431126ab2f1cc /src/corelib/codecs/qeuckrcodec.cpp
parentf00012aa89e2e07949a0f32f970f4e9be9405d4b (diff)
disable codecs for asian language when QT_NO_BIG_CODECS defined
Change-Id: I45025b13bacc5f63946b02a87c742beff1946c0b Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Diffstat (limited to 'src/corelib/codecs/qeuckrcodec.cpp')
-rw-r--r--src/corelib/codecs/qeuckrcodec.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/codecs/qeuckrcodec.cpp b/src/corelib/codecs/qeuckrcodec.cpp
index 93a31d8d5b..f502d6fa50 100644
--- a/src/corelib/codecs/qeuckrcodec.cpp
+++ b/src/corelib/codecs/qeuckrcodec.cpp
@@ -70,7 +70,7 @@
QT_BEGIN_NAMESPACE
-#ifndef QT_NO_TEXTCODEC
+#ifndef QT_NO_BIG_CODECS
unsigned int qt_Ksc5601ToUnicode(unsigned int code);
unsigned int qt_UnicodeToKsc5601(unsigned int unicode);
@@ -3566,6 +3566,6 @@ QString QCP949Codec::convertToUnicode(const char* chars, int len, ConverterState
return result;
}
-#endif // QT_NO_TEXTCODEC
+#endif // QT_NO_BIG_CODECS
QT_END_NAMESPACE