aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/EditView.h
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.h
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.h')
-rw-r--r--src/EditView.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/EditView.h b/src/EditView.h
index 5e7a6d29a..8a194236d 100644
--- a/src/EditView.h
+++ b/src/EditView.h
@@ -47,7 +47,6 @@ typedef void (*DrawTabArrowFn)(Surface *surface, PRectangle rcTab, int ymid);
*/
class EditView {
public:
- PRectangle rectangleView;
PrintParameters printParameters;
std::unique_ptr<PerLine> ldTabstops;
int tabWidthMinimumPixels;
@@ -94,9 +93,6 @@ public:
void operator=(const EditView &) = delete;
virtual ~EditView();
- PRectangle ViewRectangle() const;
- void SetViewRectangle(PRectangle rectangle);
-
bool SetTwoPhaseDraw(bool twoPhaseDraw);
bool SetPhasesDraw(int phases);
bool LinesOverlap() const;