summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-07-26 16:03:04 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-07-26 20:42:06 +0000
commit4c045529908423f3a7e301619fadce5ede508fa2 (patch)
tree8221ed97a0e5f98f5f6e29d145cd2701cbb86667
parent145cb375e92f6ee5bab73deb597322ed60d97029 (diff)
downloadpdfium-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>
-rw-r--r--core/fxcrt/fx_coordinates.h2
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) {}