diff options
author | Lei Zhang <thestig@chromium.org> | 2018-03-21 13:37:46 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-03-21 13:37:46 +0000 |
commit | c3cffbedb5ff83afa4fde51e98509f915997ff4a (patch) | |
tree | 1c1bf879e6bc5f8eb415aa8105c49795920913ac /public/fpdf_annot.h | |
parent | 4f7479ad5bd977eff1d08c65c44cb8d3950a2d77 (diff) | |
download | pdfium-c3cffbedb5ff83afa4fde51e98509f915997ff4a.tar.xz |
Fix some param names in the public API.
Also fix some comments.
Change-Id: Ib42dcf04906139020bdbdfe86e6088faa1c31daa
Reviewed-on: https://pdfium-review.googlesource.com/28830
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'public/fpdf_annot.h')
-rw-r--r-- | public/fpdf_annot.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/public/fpdf_annot.h b/public/fpdf_annot.h index d5ef54cf3b..f4dc03a2c4 100644 --- a/public/fpdf_annot.h +++ b/public/fpdf_annot.h @@ -302,24 +302,24 @@ FPDFAnnot_HasAttachmentPoints(FPDF_ANNOTATION annot); // with quadpoints, then update the bounding box too if the new quadpoints // define a bigger one. // -// annot - handle to an annotation. -// quadPoints - the quadpoints to be set. +// annot - handle to an annotation. +// quad_points - the quadpoints to be set. // // Returns true if successful. FPDF_EXPORT FPDF_BOOL FPDF_CALLCONV FPDFAnnot_SetAttachmentPoints(FPDF_ANNOTATION annot, - const FS_QUADPOINTSF* quadPoints); + const FS_QUADPOINTSF* quad_points); // Experimental API. // Get the attachment points (i.e. quadpoints) of an annotation. // -// annot - handle to an annotation. -// quadPoints - receives the quadpoints; must not be NULL. +// annot - handle to an annotation. +// quad_points - receives the quadpoints; must not be NULL. // // Returns true if successful. FPDF_EXPORT FPDF_BOOL FPDF_CALLCONV FPDFAnnot_GetAttachmentPoints(FPDF_ANNOTATION annot, - FS_QUADPOINTSF* quadPoints); + FS_QUADPOINTSF* quad_points); // Experimental API. // Set the annotation rectangle defining the location of the annotation. If the |