diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-07-26 16:03:04 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-07-26 20:42:06 +0000 |
commit | 4c045529908423f3a7e301619fadce5ede508fa2 (patch) | |
tree | 8221ed97a0e5f98f5f6e29d145cd2701cbb86667 /core | |
parent | 145cb375e92f6ee5bab73deb597322ed60d97029 (diff) | |
download | pdfium-4c045529908423f3a7e301619fadce5ede508fa2.tar.xz |
Make comment match code
The CFX_FloatRect params are Left,Bottom,Right,Top. Update comment to
match.
Change-Id: If4d8559e1f2693cfe0f7fcbe649add4c9a5bc303
Reviewed-on: https://pdfium-review.googlesource.com/9112
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core')
-rw-r--r-- | core/fxcrt/fx_coordinates.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcrt/fx_coordinates.h b/core/fxcrt/fx_coordinates.h index bcbdc0b804..3ff5fb9480 100644 --- a/core/fxcrt/fx_coordinates.h +++ b/core/fxcrt/fx_coordinates.h @@ -450,7 +450,7 @@ struct FX_RECT { int32_t bottom; }; -// LTRB rectangles (y-axis runs upwards). +// LBRT rectangles (y-axis runs upwards). class CFX_FloatRect { public: CFX_FloatRect() : CFX_FloatRect(0.0f, 0.0f, 0.0f, 0.0f) {} |