diff options
author | Neil <nyamatongwe@gmail.com> | 2015-07-25 11:25:56 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2015-07-25 11:25:56 +1000 |
commit | 2f2dfccd799599295329f90c17998feabff132e9 (patch) | |
tree | 88a8dade901c0d4118c272ecb5aa971e46015f4c /lexers/LexPLM.cxx | |
parent | a334de1ef14e92748fe3e07cb4b8bb0401e69d07 (diff) | |
download | scintilla-mirror-2f2dfccd799599295329f90c17998feabff132e9.tar.gz |
Use Sci_PositionU/Sci_Position for arguments to functional lexers, folders, and
comment recognizers to allow for future implementation of 64-bit positions.
Diffstat (limited to 'lexers/LexPLM.cxx')
-rw-r--r-- | lexers/LexPLM.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lexers/LexPLM.cxx b/lexers/LexPLM.cxx index 747d15894..3783508b9 100644 --- a/lexers/LexPLM.cxx +++ b/lexers/LexPLM.cxx @@ -37,8 +37,8 @@ static void GetRange(unsigned int start, s[i] = '\0'; } -static void ColourisePlmDoc(unsigned int startPos, - int length, +static void ColourisePlmDoc(Sci_PositionU startPos, + Sci_Position length, int initStyle, WordList *keywordlists[], Accessor &styler) @@ -125,8 +125,8 @@ static void ColourisePlmDoc(unsigned int startPos, styler.ColourTo(endPos - 1, state); } -static void FoldPlmDoc(unsigned int startPos, - int length, +static void FoldPlmDoc(Sci_PositionU startPos, + Sci_Position length, int initStyle, WordList *[], Accessor &styler) |