diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-24 11:39:59 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-24 11:39:59 -0600 |
commit | 5fbeeb1ce8009d85f988021e18bb11c422897d3a (patch) | |
tree | 2934966fd2e9227d544a9ee9ae3ee2e828823736 | |
parent | b3566a6c6754f013b55063c28b90995be612da96 (diff) | |
download | tqscintilla-5fbeeb1ce8009d85f988021e18bb11c422897d3a.tar.gz tqscintilla-5fbeeb1ce8009d85f988021e18bb11c422897d3a.zip |
Rename a few stragglers
-rwxr-xr-x | src/Editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cpp b/src/Editor.cpp index 41c67a3..055f5dc 100755 --- a/src/Editor.cpp +++ b/src/Editor.cpp @@ -3372,7 +3372,7 @@ void Editor::AddCharUTF(char *s, unsigned int len, bool treatAsDBCS) { // characters representing themselves. } else { // Unroll 1 to 3 byte UTF-8 sequences. See reference data at: - // http://www.cl.cam.ac.uk/~mgk25/tqunicode.html + // http://www.cl.cam.ac.uk/~mgk25/unicode.html // http://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-test.txt if (byte < 0xE0) { int byte2 = static_cast<unsigned char>(s[1]); |