aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2012-04-16 12:23:56 +1000
committernyamatongwe <devnull@localhost>2012-04-16 12:23:56 +1000
commit7621fd7728520b578d2d71a27c96e979368c8910 (patch)
tree5b4a2c5da229d461570859abe480df81e5ecdfbc
parent5e71444c72625bc6e77a60b97cd26e36f80573c8 (diff)
downloadscintilla-mirror-7621fd7728520b578d2d71a27c96e979368c8910.tar.gz
Fixed spelling.
-rw-r--r--doc/ScintillaDoc.html4
-rw-r--r--include/Scintilla.h4
-rw-r--r--include/Scintilla.iface6
3 files changed, 7 insertions, 7 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 87c71d158..ebd64760d 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -4042,8 +4042,8 @@ struct Sci_TextToFind {
<b id="SCI_AUTOCGETCASEINSENSITIVEBEHAVIOUR">SCI_AUTOCGETCASEINSENSITIVEBEHAVIOUR</b><br>
When autocompletion is set to ignore case (<code>SCI_AUTOCSETIGNORECASE</code>), by default it will
nonetheless select the first list member that matches in a case sensitive way to entered characters.
- This corresponds to a behaviour property of <code>AC_SELECT_CI_RESPECT_CS</code> (0).
- If you want autocompletion to ignore case at all, choose <code>AC_SELECT_CI_IGNORE_CS</code> (1).</p>
+ This corresponds to a behaviour property of <code>SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE</code> (0).
+ If you want autocompletion to ignore case at all, choose <code>SC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE</code> (1).</p>
<p><b id="SCI_AUTOCSETAUTOHIDE">SCI_AUTOCSETAUTOHIDE(bool autoHide)</b><br />
<b id="SCI_AUTOCGETAUTOHIDE">SCI_AUTOCGETAUTOHIDE</b><br />
diff --git a/include/Scintilla.h b/include/Scintilla.h
index 8ff3d3142..2459c0317 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -685,8 +685,8 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,
#define SCI_SETCHARSDEFAULT 2444
#define SCI_AUTOCGETCURRENT 2445
#define SCI_AUTOCGETCURRENTTEXT 2610
-#define SC_CASEINSENSITITIVEBEHAVIOUR_RESPECTCASE 0
-#define SC_CASEINSENSITITIVEBEHAVIOUR_IGNORECASE 1
+#define SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE 0
+#define SC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE 1
#define SCI_AUTOCSETCASEINSENSITIVEBEHAVIOUR 2634
#define SCI_AUTOCGETCASEINSENSITIVEBEHAVIOUR 2635
#define SCI_ALLOCATE 2446
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index e34f79dad..6dda631e4 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -1806,9 +1806,9 @@ fun int AutoCGetCurrent=2445(,)
# Returns the length of the item text
fun int AutoCGetCurrentText=2610(, stringresult s)
-enu CaseInsensititiveBehaviour=SC_CASEINSENSITITIVEBEHAVIOUR_
-val SC_CASEINSENSITITIVEBEHAVIOUR_RESPECTCASE=0
-val SC_CASEINSENSITITIVEBEHAVIOUR_IGNORECASE=1
+enu CaseInsensitiveBehaviour=SC_CASEINSENSITIVEBEHAVIOUR_
+val SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE=0
+val SC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE=1
# Set auto-completion case insensitive behaviour to either prefer case-sensitive matches or have no preference.
set void AutoCSetCaseInsensitiveBehaviour=2634(int behaviour,)