diff options
Diffstat (limited to 'lexers/LexBaan.cxx')
-rw-r--r-- | lexers/LexBaan.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lexers/LexBaan.cxx b/lexers/LexBaan.cxx index 3784f3c31..1421e3797 100644 --- a/lexers/LexBaan.cxx +++ b/lexers/LexBaan.cxx @@ -36,7 +36,7 @@ static inline bool IsAWordStart(const int ch) { return (ch < 0x80) && (isalnum(ch) || ch == '_'); } -static void ColouriseBaanDoc(unsigned int startPos, int length, int initStyle, WordList *keywordlists[], +static void ColouriseBaanDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *keywordlists[], Accessor &styler) { WordList &keywords = *keywordlists[0]; @@ -137,7 +137,7 @@ static void ColouriseBaanDoc(unsigned int startPos, int length, int initStyle, W sc.Complete(); } -static void FoldBaanDoc(unsigned int startPos, int length, int initStyle, WordList *[], +static void FoldBaanDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *[], Accessor &styler) { bool foldComment = styler.GetPropertyInt("fold.comment") != 0; bool foldCompact = styler.GetPropertyInt("fold.compact", 1) != 0; |