Index: Source/wtf/text/TextCodecICU.cpp |
diff --git a/Source/wtf/text/TextCodecICU.cpp b/Source/wtf/text/TextCodecICU.cpp |
index f24dda0aad8b3c5815412c9fa482637dead11346..15beef74dc906cd436f93a86feb17a124a202858 100644 |
--- a/Source/wtf/text/TextCodecICU.cpp |
+++ b/Source/wtf/text/TextCodecICU.cpp |
@@ -372,7 +372,7 @@ String TextCodecICU::decode(const char* bytes, size_t length, FlushBehavior flus |
// <http://bugs.webkit.org/show_bug.cgi?id=17014> |
// Simplified Chinese pages use the code A3A0 to mean "full-width space", but ICU decodes it as U+E5E5. |
if (!strcmp(m_encoding.name(), "GBK") || !strcasecmp(m_encoding.name(), "gb18030")) |
- resultString.replace(0xE5E5, ideographicSpace); |
+ resultString.replace(0xE5E5, ideographicSpaceCharacter); |
return resultString; |
} |