Merge branch 'stc-typo-fixes'
Fix minor typos in STC docs. See https://github.com/wxWidgets/wxWidgets/pull/2276
This commit is contained in:
@@ -4584,10 +4584,10 @@ public:
|
||||
// Get the current indicator value
|
||||
int GetIndicatorValue() const;
|
||||
|
||||
// Turn a indicator on over a range.
|
||||
// Turn an indicator on over a range.
|
||||
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);
|
||||
|
||||
// Are any indicators present at pos?
|
||||
|
@@ -5517,12 +5517,12 @@ public:
|
||||
int GetIndicatorValue() const;
|
||||
|
||||
/**
|
||||
Turn a indicator on over a range.
|
||||
Turn an indicator on over a range.
|
||||
*/
|
||||
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);
|
||||
|
||||
@@ -8124,7 +8124,7 @@ public:
|
||||
|
||||
@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:
|
||||
@link wxStyledTextEvent::GetModifiers GetModifiers@endlink,
|
||||
@@ -8146,7 +8146,7 @@ public:
|
||||
|
||||
@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:
|
||||
@link wxStyledTextEvent::GetModifiers GetModifiers@endlink,
|
||||
|
@@ -2150,10 +2150,10 @@ set void SetIndicatorValue=2502(int value,)
|
||||
# Get the current indicator value
|
||||
get int GetIndicatorValue=2503(,)
|
||||
|
||||
# Turn a indicator on over a range.
|
||||
# Turn an indicator on over a range.
|
||||
fun void IndicatorFillRange=2504(position start, int lengthFill)
|
||||
|
||||
# Turn a indicator off over a range.
|
||||
# Turn an indicator off over a range.
|
||||
fun void IndicatorClearRange=2505(position start, int lengthClear)
|
||||
|
||||
# Are any indicators present at pos?
|
||||
|
@@ -3734,13 +3734,13 @@ int wxStyledTextCtrl::GetIndicatorValue() const
|
||||
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)
|
||||
{
|
||||
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)
|
||||
{
|
||||
SendMsg(SCI_INDICATORCLEARRANGE, start, lengthClear);
|
||||
|
@@ -1065,7 +1065,7 @@ public:
|
||||
|
||||
@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:
|
||||
@link wxStyledTextEvent::GetModifiers GetModifiers@endlink,
|
||||
@@ -1087,7 +1087,7 @@ public:
|
||||
|
||||
@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:
|
||||
@link wxStyledTextEvent::GetModifiers GetModifiers@endlink,
|
||||
|
Reference in New Issue
Block a user