aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authorNeil Hodgson <nyamatongwe@gmail.com>2018-04-14 09:18:35 +1000
committerNeil Hodgson <nyamatongwe@gmail.com>2018-04-14 09:18:35 +1000
commitcc0af579fe23e74cce1fdc41ab53895cb18e396a (patch)
tree14fa25832551eb73002b67475a8b2da7532fc2a9 /src/Editor.h
parent0f6f1b05894d29f03bc2b57e75fe4c8a37f9ac21 (diff)
downloadscintilla-mirror-cc0af579fe23e74cce1fdc41ab53895cb18e396a.tar.gz
Make some changes recommended by clang-tidy.
Diffstat (limited to 'src/Editor.h')
-rw-r--r--src/Editor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Editor.h b/src/Editor.h
index 2e8ac1503..db070916d 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -271,14 +271,14 @@ protected: // ScintillaBase subclass needs access to much of Editor
// The top left visible point in main window coordinates. Will be 0,0 except for
// scroll views where it will be equivalent to the current scroll position.
- virtual Point GetVisibleOriginInMain() const override;
+ Point GetVisibleOriginInMain() const override;
PointDocument DocumentPointFromView(Point ptView) const; // Convert a point from view space to document
Sci::Line TopLineOfMain() const override; // Return the line at Main's y coordinate 0
virtual PRectangle GetClientRectangle() const;
virtual PRectangle GetClientDrawingRectangle();
PRectangle GetTextRectangle() const;
- virtual Sci::Line LinesOnScreen() const override;
+ Sci::Line LinesOnScreen() const override;
Sci::Line LinesToScroll() const;
Sci::Line MaxScrollPos() const;
SelectionPosition ClampPositionIntoDocument(SelectionPosition sp) const;