diff options
author | Neil <nyamatongwe@gmail.com> | 2018-03-09 21:05:33 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-03-09 21:05:33 +1100 |
commit | aae86a999fe82ab85660991892253040126386b8 (patch) | |
tree | 1c82cf445ee7f3d0e9644a9a97bf978798479e84 /src/AutoComplete.cxx | |
parent | 2d698add257d0bbb38335659ed944e9cc41fe593 (diff) | |
download | scintilla-mirror-aae86a999fe82ab85660991892253040126386b8.tar.gz |
Use Position/Line/int more accurately in preparation for large documents.
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 a5aa50afe..966df7d47 100644 --- a/src/AutoComplete.cxx +++ b/src/AutoComplete.cxx @@ -54,7 +54,7 @@ bool AutoComplete::Active() const { } void AutoComplete::Start(Window &parent, int ctrlID, - Sci::Position position, Point location, int startLen_, + Sci::Position position, Point location, Sci::Position startLen_, int lineHeight, bool unicodeMode, int technology) { if (active) { Cancel(); |