diff options
Diffstat (limited to 'scintilla/include/Platform.h')
-rw-r--r-- | scintilla/include/Platform.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scintilla/include/Platform.h b/scintilla/include/Platform.h index dbc986d..28d34f4 100644 --- a/scintilla/include/Platform.h +++ b/scintilla/include/Platform.h @@ -145,7 +145,7 @@ public: (pt.y >= top) && (pt.y <= bottom);
}
bool ContainsWholePixel(Point pt) const {
- // Does the rectangle contain all of the pixel to left/below the point
+ // Does the rectangle contain all of the pixel to left/below the point
return (pt.x >= left) && ((pt.x+1) <= right) &&
(pt.y >= top) && ((pt.y+1) <= bottom);
}
|