diff options
author | Neil Hodgson <nyamatongwe@gmail.com> | 2013-12-03 22:14:21 +1100 |
---|---|---|
committer | Neil Hodgson <nyamatongwe@gmail.com> | 2013-12-03 22:14:21 +1100 |
commit | fbac5206d8bd5094e13be6691d986bd12975b8f7 (patch) | |
tree | 1d374ab1b7dd5bc23bdf04f114b655fa4fcd504d /src/Editor.h | |
parent | f038aae3951fc3290b526a29983e1ce59431438c (diff) | |
download | scintilla-mirror-fbac5206d8bd5094e13be6691d986bd12975b8f7.tar.gz |
Fix problems with appearance of newly scrolled content on OS X 10.9 where previously
prepared content was shown.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Editor.h b/src/Editor.h index 388053777..da4787b0a 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -356,8 +356,8 @@ protected: // ScintillaBase subclass needs access to much of Editor void SetTopLine(int topLineNew); bool AbandonPaint(); - void RedrawRect(PRectangle rc); - void Redraw(); + virtual void RedrawRect(PRectangle rc); + virtual void Redraw(); void RedrawSelMargin(int line=-1, bool allAfter=false); PRectangle RectangleFromRange(int start, int end); void InvalidateRange(int start, int end); |