From 6bdb56cad7f9e31183b90152324281ac52c4563d Mon Sep 17 00:00:00 2001 From: dsinclair Date: Tue, 6 Dec 2016 09:53:27 -0800 Subject: Fix FPDF_GetPageLabel API typo. The API was originally committed as FPDF_GetPagelLabel but should be FPDF_GetPageLabel. BUG=pdfium:479 Review-Url: https://codereview.chromium.org/2559513002 --- public/fpdf_doc.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'public') diff --git a/public/fpdf_doc.h b/public/fpdf_doc.h index 10f899549b..9d55a2e826 100644 --- a/public/fpdf_doc.h +++ b/public/fpdf_doc.h @@ -313,10 +313,10 @@ DLLEXPORT unsigned long STDCALL FPDF_GetMetaText(FPDF_DOCUMENT document, // The |buffer| is always encoded in UTF-16LE. The |buffer| is followed by two // bytes of zeros indicating the end of the string. If |buflen| is less than // the returned length, or |buffer| is NULL, |buffer| will not be modified. -DLLEXPORT unsigned long STDCALL FPDF_GetPagelLabel(FPDF_DOCUMENT document, - int page_index, - void* buffer, - unsigned long buflen); +DLLEXPORT unsigned long STDCALL FPDF_GetPageLabel(FPDF_DOCUMENT document, + int page_index, + void* buffer, + unsigned long buflen); #ifdef __cplusplus } // extern "C" -- cgit v1.2.3