aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/ScintillaDoc.html
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2015-05-20 10:57:02 +1000
committerNeil <nyamatongwe@gmail.com>2015-05-20 10:57:02 +1000
commit93103de7a6612a3a5e5328327340d636a87577d2 (patch)
tree0fe8abde3bebc7f78cf3805037ab5293b35e6559 /doc/ScintillaDoc.html
parent72f89d56015155b507e47109e477b085fc3ed56d (diff)
downloadscintilla-mirror-93103de7a6612a3a5e5328327340d636a87577d2.tar.gz
SCI_TARGETASUTF8 and SCI_ENCODEDFROMUTF8 implemented on Win32.
From johnsonj.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r--doc/ScintillaDoc.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index da63297bf..3a51cfb61 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -587,14 +587,14 @@ struct Sci_TextRange {
};
</pre>
- <h3 id="EncodedAccess">Specific to GTK+ and Cocoa only: Access to encoded text</h3>
+ <h3 id="EncodedAccess">Specific to GTK+, Cocoa and Windows only: Access to encoded text</h3>
<p><b id="SCI_TARGETASUTF8">SCI_TARGETASUTF8(&lt;unused&gt;, char *s)</b><br />
This method retrieves the value of the target encoded as UTF-8 which is the default
encoding of GTK+ so is useful for retrieving text for use in other parts of the user interface,
such as find and replace dialogs. The length of the encoded text in bytes is returned.
Cocoa uses UTF-16 which is easily converted from UTF-8 so this method can be used to perform the
- more complex work of transcoding from the various of encodings supported.
+ more complex work of transcoding from the various encodings supported.
</p>
<p><b id="SCI_ENCODEDFROMUTF8">SCI_ENCODEDFROMUTF8(const char *utf8, char *encoded)</b><br />