summaryrefslogtreecommitdiffstats
path: root/doc/other/ScintillaDoc.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/other/ScintillaDoc.html')
-rw-r--r--doc/other/ScintillaDoc.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/other/ScintillaDoc.html b/doc/other/ScintillaDoc.html
index d82f9fc..77da728 100644
--- a/doc/other/ScintillaDoc.html
+++ b/doc/other/ScintillaDoc.html
@@ -799,8 +799,8 @@ struct TextToFind {
<b id="SCI_GETOVERTYPE">SCI_GETOVERTYPE</b><br />
When overtype is enabled, each typed character replaces the character to the right of the text
caret. When overtype is disabled, characters are inserted at the caret.
- <code>SCI_GETOVERTYPE</code> returns <code>TRUE</code> (1) if overtyping is active, otherwise
- <code>FALSE</code> (0) will be returned. Use <code>SCI_SETOVERTYPE</code> to set the overtype
+ <code>SCI_GETOVERTYPE</code> returns <code>true</code> (1) if overtyping is active, otherwise
+ <code>false</code> (0) will be returned. Use <code>SCI_SETOVERTYPE</code> to set the overtype
mode.</p>
<h2 id="CutCopyAndPaste">Cut, copy and paste</h2>
@@ -829,7 +829,7 @@ struct TextToFind {
<code>SCI_GETSELECTIONSTART()-SCI_GETSELECTIONEND()</code>, which will be non-zero if you can
copy or cut to the clipboard.</p>
- <p>GTK+ does not really support <code>SCI_CANPASTE</code> and always returns <code>TRUE</code>
+ <p>GTK+ does not really support <code>SCI_CANPASTE</code> and always returns <code>true</code>
unless the document is read-only.</p>
<p>On X, the clipboard is asynchronous and may require several messages between
@@ -2373,7 +2373,7 @@ struct TextToFind {
for <code>WM_PALETTECHANGED</code>, <code>WM_QUERYNEWPALETTE</code> and
<code>SCI_SETUSEPALETTE</code>. The Windows messages to forward are:<br />
<code>WM_SYSCOLORCHANGE</code>, <code>WM_PALETTECHANGED</code>,
- <code>WM_QUERYNEWPALETTE</code> (should return <code>TRUE</code>).</p>
+ <code>WM_QUERYNEWPALETTE</code> (should return <code>true</code>).</p>
<p>To forward a message <code>(WM_XXXX, WPARAM, LPARAM)</code> to Scintilla, you can use
<code>SendMessage(hScintilla, WM_XXXX, WPARAM, LPARAM)</code> where <code>hScintilla</code> is