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 | 96e09e26db89c033f7c8f8c1dffabb42ac492a54 (patch) | |
tree | 2eb0c48bbcd6e7dfecd8ad1bfa11d58288d1b3cd | |
parent | 5e1f3c9b721f436cd60961af3df53734f10deedf (diff) | |
download | scintilla-mirror-96e09e26db89c033f7c8f8c1dffabb42ac492a54.tar.gz |
Use correct wider types.
-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 c04313564..8e52f40f7 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,) @@ -2383,10 +2383,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,) |