diff options
author | nyamatongwe <unknown> | 2002-01-16 07:26:01 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-01-16 07:26:01 +0000 |
commit | 93660c1b10407f26bd3bf58b2dc0102c9d936c4c (patch) | |
tree | 315e5052bc040c2926145968ffa558dd00482231 /src/Editor.h | |
parent | dafcd28f79ae282b973b9e7cf7b350e7902ca943 (diff) | |
download | scintilla-mirror-93660c1b10407f26bd3bf58b2dc0102c9d936c4c.tar.gz |
WrapLines performs scroll bar and top line maintenance.
WrapLines called before ensuring a lin eis visible so doc<->visible mapping
correct.
When modification changes number of lines, NeedWrapping starts one line
before.
Horizontal scrolling disallowed even more when in wrap mode.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h index 3a02ebd2a..16dae7eac 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -276,7 +276,7 @@ protected: // ScintillaBase subclass needs access to much of Editor void InvalidateCaret(); void NeedWrapping(int docLineStartWrapping=0); - bool WrapLines(int *goodTopLine); + bool WrapLines(); int SubstituteMarkerIfEmpty(int markerCheck, int markerDefault); void PaintSelMargin(Surface *surface, PRectangle &rc); |