summaryrefslogtreecommitdiffstats
path: root/scintilla/lexlib/Accessor.h
diff options
context:
space:
mode:
Diffstat (limited to 'scintilla/lexlib/Accessor.h')
-rw-r--r--scintilla/lexlib/Accessor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/scintilla/lexlib/Accessor.h b/scintilla/lexlib/Accessor.h
index c85032c..3fd48cc 100644
--- a/scintilla/lexlib/Accessor.h
+++ b/scintilla/lexlib/Accessor.h
@@ -18,14 +18,14 @@ class Accessor;
class WordList;
class PropSetSimple;
-typedef bool (*PFNIsCommentLeader)(Accessor &styler, int pos, int len);
+typedef bool (*PFNIsCommentLeader)(Accessor &styler, Sci_Position pos, Sci_Position len);
class Accessor : public LexAccessor {
public:
PropSetSimple *pprops;
Accessor(IDocument *pAccess_, PropSetSimple *pprops_);
int GetPropertyInt(const char *, int defaultValue=0) const;
- int IndentAmount(int line, int *flags, PFNIsCommentLeader pfnIsCommentLeader = 0);
+ int IndentAmount(Sci_Position line, int *flags, PFNIsCommentLeader pfnIsCommentLeader = 0);
};
#ifdef SCI_NAMESPACE