aboutsummaryrefslogtreecommitdiffhomepage
path: root/curses/ScintillaCurses.cxx
diff options
context:
space:
mode:
authormitchell <unknown>2018-05-05 23:10:51 -0400
committermitchell <unknown>2018-05-05 23:10:51 -0400
commit92676970616a5163636329e49c4cc825e46d6c7f (patch)
tree9e2cc612919e2bc1ee50a31dc0fd8bb7652d94d7 /curses/ScintillaCurses.cxx
parent74d9510a055d6b9aa9d7679522f255db62de76d0 (diff)
downloadscintilla-mirror-92676970616a5163636329e49c4cc825e46d6c7f.tar.gz
Backport: Add SC_DOCUMENTOPTION_TEXT_LARGE option for documents larger than 2 GigaBytes.
This option is provisional and experimental. Backport of changesets 6696:9729ff36c5b1 and 6723:cffe824ab55e. Also added '#include <cstddef>' to top of src/RESearch.cxx to fix 32-bit build error.
Diffstat (limited to 'curses/ScintillaCurses.cxx')
-rw-r--r--curses/ScintillaCurses.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/curses/ScintillaCurses.cxx b/curses/ScintillaCurses.cxx
index af55a3b62..f4804a1f0 100644
--- a/curses/ScintillaCurses.cxx
+++ b/curses/ScintillaCurses.cxx
@@ -1024,7 +1024,7 @@ public:
* pages. The width is based on the width of the view and the view's scroll
* width property.
*/
- bool ModifyScrollBars(int nMax, int nPage) {
+ bool ModifyScrollBars(Sci::Line nMax, Sci::Line nPage) {
if (!wMain.GetID()) return false;
WINDOW *w = GetWINDOW();
int maxy = getmaxy(w), maxx = getmaxx(w);