diff options
author | Neil <nyamatongwe@gmail.com> | 2017-03-31 18:19:38 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-03-31 18:19:38 +1100 |
commit | 8ff947c9db5ab9f1a093434180bc05bfecb62c4d (patch) | |
tree | 6d36be4b73c70c73f5345eb30a043c843a9e6839 /src/AutoComplete.cxx | |
parent | 63cf929d772aa829daa613114600ece511c9b2d7 (diff) | |
download | scintilla-mirror-8ff947c9db5ab9f1a093434180bc05bfecb62c4d.tar.gz |
Using Sci::Position and Sci::Line to mark variables that are document positions
and lines.
Diffstat (limited to 'src/AutoComplete.cxx')
-rw-r--r-- | src/AutoComplete.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AutoComplete.cxx b/src/AutoComplete.cxx index 3f3570283..419d495c2 100644 --- a/src/AutoComplete.cxx +++ b/src/AutoComplete.cxx @@ -58,7 +58,7 @@ bool AutoComplete::Active() const { } void AutoComplete::Start(Window &parent, int ctrlID, - int position, Point location, int startLen_, + Sci::Position position, Point location, int startLen_, int lineHeight, bool unicodeMode, int technology) { if (active) { Cancel(); |