Regenerate STC files after the typo fixes
Rerun src/stc/gen_iface.py.
This commit is contained in:
@@ -3056,7 +3056,7 @@ public:
|
|||||||
// Is the IME displayed in a window or inline?
|
// Is the IME displayed in a window or inline?
|
||||||
int GetIMEInteraction() const;
|
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);
|
void SetIMEInteraction(int imeInteraction);
|
||||||
|
|
||||||
// Set the symbol used for a particular marker number,
|
// Set the symbol used for a particular marker number,
|
||||||
@@ -3377,7 +3377,7 @@ public:
|
|||||||
// Experimental feature, currently buggy.
|
// Experimental feature, currently buggy.
|
||||||
void StyleSetChangeable(int style, bool changeable);
|
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 lengthEntered parameter indicates how many characters before
|
||||||
// the caret should be used to provide context.
|
// the caret should be used to provide context.
|
||||||
void AutoCompShow(int lengthEntered, const wxString& itemList);
|
void AutoCompShow(int lengthEntered, const wxString& itemList);
|
||||||
@@ -4584,10 +4584,10 @@ public:
|
|||||||
// Get the current indicator value
|
// Get the current indicator value
|
||||||
int GetIndicatorValue() const;
|
int GetIndicatorValue() const;
|
||||||
|
|
||||||
// Turn a indicator on over a range.
|
// Turn an indicator on over a range.
|
||||||
void IndicatorFillRange(int start, int lengthFill);
|
void IndicatorFillRange(int start, int lengthFill);
|
||||||
|
|
||||||
// Turn a indicator off over a range.
|
// Turn an indicator off over a range.
|
||||||
void IndicatorClearRange(int start, int lengthClear);
|
void IndicatorClearRange(int start, int lengthClear);
|
||||||
|
|
||||||
// Are any indicators present at pos?
|
// Are any indicators present at pos?
|
||||||
|
@@ -5517,12 +5517,12 @@ public:
|
|||||||
int GetIndicatorValue() const;
|
int GetIndicatorValue() const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Turn a indicator on over a range.
|
Turn an indicator on over a range.
|
||||||
*/
|
*/
|
||||||
void IndicatorFillRange(int start, int lengthFill);
|
void IndicatorFillRange(int start, int lengthFill);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Turn a indicator off over a range.
|
Turn an indicator off over a range.
|
||||||
*/
|
*/
|
||||||
void IndicatorClearRange(int start, int lengthClear);
|
void IndicatorClearRange(int start, int lengthClear);
|
||||||
|
|
||||||
@@ -8124,7 +8124,7 @@ public:
|
|||||||
|
|
||||||
@c wxEVT_STC_HOTSPOT_RELEASE_CLICK
|
@c wxEVT_STC_HOTSPOT_RELEASE_CLICK
|
||||||
|
|
||||||
- Generated when a click over a hotspot has been released.
|
- Generated when a click-over hotspot has been released.
|
||||||
|
|
||||||
- Valid event functions:
|
- Valid event functions:
|
||||||
@link wxStyledTextEvent::GetModifiers GetModifiers@endlink,
|
@link wxStyledTextEvent::GetModifiers GetModifiers@endlink,
|
||||||
@@ -8146,7 +8146,7 @@ public:
|
|||||||
|
|
||||||
@c wxEVT_STC_INDICATOR_RELEASE
|
@c wxEVT_STC_INDICATOR_RELEASE
|
||||||
|
|
||||||
- Generated when a click over a indicator has been released.
|
- Generated when a click over an indicator has been released.
|
||||||
|
|
||||||
- Valid event functions:
|
- Valid event functions:
|
||||||
@link wxStyledTextEvent::GetModifiers GetModifiers@endlink,
|
@link wxStyledTextEvent::GetModifiers GetModifiers@endlink,
|
||||||
|
@@ -582,7 +582,7 @@ int wxStyledTextCtrl::GetIMEInteraction() const
|
|||||||
return SendMsg(SCI_GETIMEINTERACTION, 0, 0);
|
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)
|
void wxStyledTextCtrl::SetIMEInteraction(int imeInteraction)
|
||||||
{
|
{
|
||||||
SendMsg(SCI_SETIMEINTERACTION, imeInteraction, 0);
|
SendMsg(SCI_SETIMEINTERACTION, imeInteraction, 0);
|
||||||
@@ -1320,7 +1320,7 @@ void wxStyledTextCtrl::StyleSetChangeable(int style, bool changeable)
|
|||||||
SendMsg(SCI_STYLESETCHANGEABLE, style, 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 lengthEntered parameter indicates how many characters before
|
||||||
// the caret should be used to provide context.
|
// the caret should be used to provide context.
|
||||||
void wxStyledTextCtrl::AutoCompShow(int lengthEntered, const wxString& itemList)
|
void wxStyledTextCtrl::AutoCompShow(int lengthEntered, const wxString& itemList)
|
||||||
@@ -3734,13 +3734,13 @@ int wxStyledTextCtrl::GetIndicatorValue() const
|
|||||||
return SendMsg(SCI_GETINDICATORVALUE, 0, 0);
|
return SendMsg(SCI_GETINDICATORVALUE, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Turn a indicator on over a range.
|
// Turn an indicator on over a range.
|
||||||
void wxStyledTextCtrl::IndicatorFillRange(int start, int lengthFill)
|
void wxStyledTextCtrl::IndicatorFillRange(int start, int lengthFill)
|
||||||
{
|
{
|
||||||
SendMsg(SCI_INDICATORFILLRANGE, start, lengthFill);
|
SendMsg(SCI_INDICATORFILLRANGE, start, lengthFill);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Turn a indicator off over a range.
|
// Turn an indicator off over a range.
|
||||||
void wxStyledTextCtrl::IndicatorClearRange(int start, int lengthClear)
|
void wxStyledTextCtrl::IndicatorClearRange(int start, int lengthClear)
|
||||||
{
|
{
|
||||||
SendMsg(SCI_INDICATORCLEARRANGE, start, lengthClear);
|
SendMsg(SCI_INDICATORCLEARRANGE, start, lengthClear);
|
||||||
|
Reference in New Issue
Block a user