diff options
| author | Mitchell Foral <unknown> | 2020-03-29 08:25:41 +1100 |
|---|---|---|
| committer | Mitchell Foral <unknown> | 2020-03-29 08:25:41 +1100 |
| commit | 4485466ee31815eaccf97556b8e3e697b1932c26 (patch) | |
| tree | 3da04a66d85e85296820ccffd62f30d43badce7b | |
| parent | 06ebb765d92471f94863043dc9597b411981ad37 (diff) | |
| download | scintilla-mirror-4485466ee31815eaccf97556b8e3e697b1932c26.tar.gz | |
Backport: Use correct wider types.
Backport of changeset 8095:55f5243a2594.
| -rw-r--r-- | include/Scintilla.iface | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 762553e09..7d0e9a880 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -151,7 +151,7 @@ fun position GetStyledText=2015(, textrange tr) fun bool CanRedo=2016(,) # Retrieve the line number at which a particular marker is located. -fun int MarkerLineFromHandle=2017(int markerHandle,) +fun line MarkerLineFromHandle=2017(int markerHandle,) # Delete a marker. fun void MarkerDeleteHandle=2018(int markerHandle,) @@ -1294,7 +1294,7 @@ fun position CallTipPosStart=2203(,) set void CallTipSetPosStart=2214(position posStart,) # Highlight a segment of the definition. -fun void CallTipSetHlt=2204(int highlightStart, int highlightEnd) +fun void CallTipSetHlt=2204(position highlightStart, position highlightEnd) # Set the background colour for the call tip. set void CallTipSetBack=2205(colour back,) @@ -2390,10 +2390,10 @@ fun int IndicatorAllOnFor=2506(position pos,) fun int IndicatorValueAt=2507(int indicator, position pos) # Where does a particular indicator start? -fun int IndicatorStart=2508(int indicator, position pos) +fun position IndicatorStart=2508(int indicator, position pos) # Where does a particular indicator end? -fun int IndicatorEnd=2509(int indicator, position pos) +fun position IndicatorEnd=2509(int indicator, position pos) # Set number of entries in position cache set void SetPositionCache=2514(int size,) |
