aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Indicator.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-08-24 11:39:57 +1000
committerNeil <nyamatongwe@gmail.com>2021-08-24 11:39:57 +1000
commitdc0398d650e75efe9641f0c48d630f2c2027281a (patch)
tree83819a98c36c4b1c6a011d9524e26eb5b87da3d3 /src/Indicator.cxx
parentf756e89f53b407432c7db7c4134bfdb8af94d964 (diff)
downloadscintilla-mirror-dc0398d650e75efe9641f0c48d630f2c2027281a.tar.gz
Remove line end white space.
Diffstat (limited to 'src/Indicator.cxx')
-rw-r--r--src/Indicator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Indicator.cxx b/src/Indicator.cxx
index 0dd9ba7c2..bd02a01d1 100644
--- a/src/Indicator.cxx
+++ b/src/Indicator.cxx
@@ -47,7 +47,7 @@ void Indicator::Draw(Surface *surface, const PRectangle &rc, const PRectangle &r
const XYPOSITION ymid = PixelAlign(rc.Centre().y, pixelDivisions);
- // This is a reasonable clip for indicators beneath text like underlines
+ // This is a reasonable clip for indicators beneath text like underlines
PRectangle rcClip = rcAligned;
rcClip.bottom = rcFullHeightAligned.bottom;
@@ -242,7 +242,7 @@ void Indicator::Draw(Surface *surface, const PRectangle &rc, const PRectangle &r
const XYPOSITION widthDot = std::round(strokeWidth);
XYPOSITION x = std::floor(rc.left);
while (x < rc.right) {
- const PRectangle rcDot = PRectangle(x, ymid,
+ const PRectangle rcDot = PRectangle(x, ymid,
x + widthDot, ymid + widthDot);
surface->FillRectangle(rcDot, sacDraw.fore);
x += widthDot * 2;