aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/EditView.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2018-04-05 19:08:40 +1000
committerNeil <nyamatongwe@gmail.com>2018-04-05 19:08:40 +1000
commitf27fbf31ddd074893a4a383f2698fb713d66a981 (patch)
tree50f8b6278da5deeb636572280e0757446595b230 /src/EditView.cxx
parentb8caeebffe178f292d636e3075de6c4a24c7a56a (diff)
downloadscintilla-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.cxx8
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;