From c3cffbedb5ff83afa4fde51e98509f915997ff4a Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Wed, 21 Mar 2018 13:37:46 +0000 Subject: 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 Reviewed-by: dsinclair --- public/fpdf_annot.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'public/fpdf_annot.h') 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 -- cgit v1.2.3