Apply Scintilla doc fixes to the correct files

Back-propagate the fixes of 28d705424b (Fix double words and article
mismatches in docs., 2021-03-10) to interface/wx/stc/stc.h to the files
that this header is generated from to avoid losing these changes when
it's regenerated the next time.

See https://github.com/wxWidgets/wxWidgets/pull/2273
This commit is contained in:
Vadim Zeitlin
2021-03-13 13:17:51 +01:00
parent 1cb066364f
commit cc97e69346
4 changed files with 7 additions and 7 deletions

View File

@@ -3056,7 +3056,7 @@ public:
// Is the IME displayed in a window or inline?
int GetIMEInteraction() const;
// Choose to display the the IME in a winow or inline.
// Choose to display the IME in a winow or inline.
void SetIMEInteraction(int imeInteraction);
// Set the symbol used for a particular marker number,
@@ -3377,7 +3377,7 @@ public:
// Experimental feature, currently buggy.
void StyleSetChangeable(int style, bool changeable);
// Display a auto-completion list.
// Display an auto-completion list.
// The lengthEntered parameter indicates how many characters before
// the caret should be used to provide context.
void AutoCompShow(int lengthEntered, const wxString& itemList);

View File

@@ -263,7 +263,7 @@ val SC_IME_INLINE=1
# Is the IME displayed in a window or inline?
get int GetIMEInteraction=2678(,)
# Choose to display the the IME in a winow or inline.
# Choose to display the IME in a winow or inline.
set void SetIMEInteraction=2679(int imeInteraction,)
enu MarkerSymbol=SC_MARK_
@@ -736,7 +736,7 @@ set void SetCaretLineBack=2098(colour back,)
# Experimental feature, currently buggy.
set void StyleSetChangeable=2099(int style, bool changeable)
# Display a auto-completion list.
# Display an auto-completion list.
# The lengthEntered parameter indicates how many characters before
# the caret should be used to provide context.
fun void AutoCShow=2100(int lengthEntered, string itemList)

View File

@@ -582,7 +582,7 @@ int wxStyledTextCtrl::GetIMEInteraction() const
return SendMsg(SCI_GETIMEINTERACTION, 0, 0);
}
// Choose to display the the IME in a winow or inline.
// Choose to display the IME in a winow or inline.
void wxStyledTextCtrl::SetIMEInteraction(int imeInteraction)
{
SendMsg(SCI_SETIMEINTERACTION, imeInteraction, 0);
@@ -1320,7 +1320,7 @@ void wxStyledTextCtrl::StyleSetChangeable(int style, bool changeable)
SendMsg(SCI_STYLESETCHANGEABLE, style, changeable);
}
// Display a auto-completion list.
// Display an auto-completion list.
// The lengthEntered parameter indicates how many characters before
// the caret should be used to provide context.
void wxStyledTextCtrl::AutoCompShow(int lengthEntered, const wxString& itemList)

View File

@@ -1076,7 +1076,7 @@ public:
@c wxEVT_STC_INDICATOR_CLICK
- Generated when a indicator has been clicked.
- Generated when an indicator has been clicked.
- Valid event functions:
@link wxStyledTextEvent::GetModifiers GetModifiers@endlink,