diff options
author | Neil <nyamatongwe@gmail.com> | 2018-04-05 19:08:40 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-04-05 19:08:40 +1000 |
commit | f27fbf31ddd074893a4a383f2698fb713d66a981 (patch) | |
tree | 50f8b6278da5deeb636572280e0757446595b230 /src/EditView.cxx | |
parent | b8caeebffe178f292d636e3075de6c4a24c7a56a (diff) | |
download | scintilla-mirror-f27fbf31ddd074893a4a383f2698fb713d66a981.tar.gz |
Backport: Backed out changeset: 7402342dc7a3 Caching client rectangle on EditView.
This change was not compatible with Cocoa as it uses document-based coordinates
rather than view-based.
Backport of changeset 6673:a22abea8d41e.
Diffstat (limited to 'src/EditView.cxx')
-rw-r--r-- | src/EditView.cxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/EditView.cxx b/src/EditView.cxx index 23c4663ee..d9ca751a0 100644 --- a/src/EditView.cxx +++ b/src/EditView.cxx @@ -190,14 +190,6 @@ EditView::EditView() { EditView::~EditView() { } -PRectangle EditView::ViewRectangle() const { - return rectangleView; -} - -void EditView::SetViewRectangle(PRectangle rectangle) { - rectangleView = rectangle; -} - bool EditView::SetTwoPhaseDraw(bool twoPhaseDraw) { const PhasesDraw phasesDrawNew = twoPhaseDraw ? phasesTwo : phasesOne; const bool redraw = phasesDraw != phasesDrawNew; |