diff options
author | Neil <nyamatongwe@gmail.com> | 2021-03-22 17:21:20 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-03-22 17:21:20 +1100 |
commit | 0035079b6cf849dc5e2ae8face51fcfb99853efa (patch) | |
tree | aae706048fdadf44ec52a67882309fe8f77e5fd0 /src/PositionCache.h | |
parent | c6abfabd40bdec8adca1b6f534e56a5602ecb993 (diff) | |
download | scintilla-mirror-0035079b6cf849dc5e2ae8face51fcfb99853efa.tar.gz |
Use XYPOSITION for xStart parameter as it is only passed as XYPOSITION.
Diffstat (limited to 'src/PositionCache.h')
-rw-r--r-- | src/PositionCache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PositionCache.h b/src/PositionCache.h index 0fb51dc38..5a3ec9bfd 100644 --- a/src/PositionCache.h +++ b/src/PositionCache.h @@ -255,7 +255,7 @@ public: // Try to make each subdivided run lengthEachSubdivision or shorter. enum { lengthEachSubdivision = 100 }; BreakFinder(const LineLayout *ll_, const Selection *psel, Range lineRange_, Sci::Position posLineStart_, - int xStart, bool breakForSelection, const Document *pdoc_, const SpecialRepresentations *preprs_, const ViewStyle *pvsDraw); + XYPOSITION xStart, bool breakForSelection, const Document *pdoc_, const SpecialRepresentations *preprs_, const ViewStyle *pvsDraw); // Deleted so BreakFinder objects can not be copied. BreakFinder(const BreakFinder &) = delete; BreakFinder(BreakFinder &&) = delete; |