diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:11:59 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:11:59 -0600 |
commit | 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch) | |
tree | df1e10cc7504665622d096f9ba80dc9e56f3afb8 /src/codecs/qjpunicode.cpp | |
parent | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff) | |
download | qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip |
Undo prior accidental commit
Diffstat (limited to 'src/codecs/qjpunicode.cpp')
-rw-r--r-- | src/codecs/qjpunicode.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/codecs/qjpunicode.cpp b/src/codecs/qjpunicode.cpp index 3071dea..2d9033f 100644 --- a/src/codecs/qjpunicode.cpp +++ b/src/codecs/qjpunicode.cpp @@ -778,32 +778,32 @@ QJpUnicodeConv *QJpUnicodeConv::newConverter(int rule) s = env.mid(i, j - i).stripWhiteSpace(); i = j + 1; } - if (tqstricmp(s, "unicode-0.9") == 0) { + if (qstricmp(s, "unicode-0.9") == 0) { rule = (rule & 0xff00) | Unicode; - } else if (tqstricmp(s, "unicode-0201") == 0) { + } else if (qstricmp(s, "unicode-0201") == 0) { rule = (rule & 0xff00) | Unicode_JISX0201; - } else if (tqstricmp(s, "unicode-ascii") == 0) { + } else if (qstricmp(s, "unicode-ascii") == 0) { rule = (rule & 0xff00) | Unicode_ASCII; - } else if (tqstricmp(s, "jisx0221-1995") == 0) { + } else if (qstricmp(s, "jisx0221-1995") == 0) { rule = (rule & 0xff00) | JISX0221_JISX0201; - } else if ((tqstricmp(s, "open-0201") == 0) || - (tqstricmp(s, "open-19970715-0201") == 0)) { + } else if ((qstricmp(s, "open-0201") == 0) || + (qstricmp(s, "open-19970715-0201") == 0)) { rule = (rule & 0xff00) | JISX0221_JISX0201; - } else if ((tqstricmp(s, "open-ascii") == 0) || - (tqstricmp(s, "open-19970715-ascii") == 0)) { + } else if ((qstricmp(s, "open-ascii") == 0) || + (qstricmp(s, "open-19970715-ascii") == 0)) { rule = (rule & 0xff00) | JISX0221_ASCII; - } else if ((tqstricmp(s, "open-ms") == 0) || - (tqstricmp(s, "open-19970715-ms") == 0)) { + } else if ((qstricmp(s, "open-ms") == 0) || + (qstricmp(s, "open-19970715-ms") == 0)) { rule = (rule & 0xff00) | Microsoft_CP932; - } else if (tqstricmp(s, "cp932") == 0) { + } else if (qstricmp(s, "cp932") == 0) { rule = (rule & 0xff00) | Microsoft_CP932; - } else if (tqstricmp(s, "jdk1.1.7") == 0) { + } else if (qstricmp(s, "jdk1.1.7") == 0) { rule = (rule & 0xff00) | Sun_JDK117; - } else if (tqstricmp(s, "nec-vdc") == 0) { + } else if (qstricmp(s, "nec-vdc") == 0) { rule = rule | NEC_VDC; - } else if (tqstricmp(s, "ibm-vdc") == 0) { + } else if (qstricmp(s, "ibm-vdc") == 0) { rule = rule | IBM_VDC; - } else if (tqstricmp(s, "udc") == 0) { + } else if (qstricmp(s, "udc") == 0) { rule = rule | UDC; } } |