diff options
author | Nicolas Pena <npm@chromium.org> | 2017-05-17 17:23:22 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-05-17 21:40:41 +0000 |
commit | 46abb66cb57d4bc6b9326efd7a0c0e776e594db2 (patch) | |
tree | d0e3b8bada3ff24ac3cff44f4ae0ed990232448d /public | |
parent | 26853181af1b28ba8070b955d90fb7a17fec2713 (diff) | |
download | pdfium-46abb66cb57d4bc6b9326efd7a0c0e776e594db2.tar.xz |
Use more static_cast in fpdfsdk
This CL replaces some reinterpret_cast with static_cast in fpdfsdk. It also
removes an obsolete comment in fpdfedit.h
Change-Id: I36c29bfcd6382490a8c955b50ccfa4c93ab351c7
Reviewed-on: https://pdfium-review.googlesource.com/5632
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Nicolás Peña <npm@chromium.org>
Diffstat (limited to 'public')
-rw-r--r-- | public/fpdf_edit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/fpdf_edit.h b/public/fpdf_edit.h index f9edfa3426..a84b42ab05 100644 --- a/public/fpdf_edit.h +++ b/public/fpdf_edit.h @@ -434,7 +434,7 @@ DLLEXPORT FPDF_BOOL STDCALL FPDFText_SetText(FPDF_PAGEOBJECT text_object, FPDF_WIDESTRING text); // Returns a font object loaded from a stream of data. The font is loaded -// into the document. The caller does not need to free the returned object. +// into the document. // // document - handle to the document. // data - the stream of data, which will be copied by the font object. |