diff options
author | nyamatongwe <devnull@localhost> | 2001-12-06 00:30:49 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-12-06 00:30:49 +0000 |
commit | ac7c594bd1f81afc0849b91e57077e604058f080 (patch) | |
tree | c51eacbf7196e9863e718ed49fd132a135dcc24f | |
parent | e628b1acea54990b54cf7f4a042a8a7a48b5e2b1 (diff) | |
download | scintilla-mirror-ac7c594bd1f81afc0849b91e57077e604058f080.tar.gz |
Fixed MarkerAdd to return int rather than void.
-rw-r--r-- | include/Scintilla.iface | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 5d4cc710a..a1efb94e1 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -262,8 +262,8 @@ fun void MarkerSetFore=2041(int markerNumber, colour fore) # Set the background colour used for a particular marker number. fun void MarkerSetBack=2042(int markerNumber, colour back) -# Add a marker to a line. -fun void MarkerAdd=2043(int line, int markerNumber) +# Add a marker to a line, returning an ID which can be used to find or delete the marker. +fun int MarkerAdd=2043(int line, int markerNumber) # Delete a marker from a line fun void MarkerDelete=2044(int line, int markerNumber) |