diff options
author | nyamatongwe <devnull@localhost> | 2001-05-14 03:39:52 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-05-14 03:39:52 +0000 |
commit | f2f4b9c5c4917528024a9e21337bc42438b6e349 (patch) | |
tree | 3a4e72b6c3d43ad388a219319040b30682c8a55b | |
parent | d2af76b9da8cd7b74ec1fdc22a4e9de1bb7e836c (diff) | |
download | scintilla-mirror-f2f4b9c5c4917528024a9e21337bc42438b6e349.tar.gz |
Changed ConvertEOLs to show that it uses the first parameter rather than
the current mode.
-rw-r--r-- | include/Scintilla.iface | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 604c96b2c..533e82a73 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -151,13 +151,13 @@ fun int GetCurLine=2027(int length, stringresult text) # Retrieve the position of the last correctly styled character. get position GetEndStyled=2028(,) -# Convert all line endings in the document to use the current mode. -fun void ConvertEOLs=2029(,) - val SC_EOL_CRLF=0 val SC_EOL_CR=1 val SC_EOL_LF=2 +# Convert all line endings in the document to one mode. +fun void ConvertEOLs=2029(int eolMode,) + # Retrieve the current end of line mode - one of CRLF, CR, or LF. get int GetEOLMode=2030(,) |