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 | 0f2bb6479b09bf0c6c537bdd67654c6c4b6b011c (patch) | |
tree | 3ce644cc85aa9b11a6524904771cee2b41feaec6 /src/EditView.cxx | |
parent | 837ca0527d7fa9286cae4755038e458d4f0e2a02 (diff) | |
download | scintilla-mirror-0f2bb6479b09bf0c6c537bdd67654c6c4b6b011c.tar.gz |
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.
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 2bb107e0b..37a6a9f9e 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; |