From 4485466ee31815eaccf97556b8e3e697b1932c26 Mon Sep 17 00:00:00 2001 From: Mitchell Foral Date: Sun, 29 Mar 2020 08:25:41 +1100 Subject: Backport: Use correct wider types. Backport of changeset 8095:55f5243a2594. --- include/Scintilla.iface | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include') 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,) -- cgit v1.2.3