diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-08-29 23:53:53 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-08-29 23:53:53 +0000 |
commit | 20c41a5a47b2460277897a1059789fc9e184e3ab (patch) | |
tree | a60b9695de7242be833c4119bb9815bd39b297ca /fpdfsdk/fpdf_edittext.cpp | |
parent | 8020fd856805ed5c5f48a7a5f3a346ea6948355f (diff) | |
download | pdfium-20c41a5a47b2460277897a1059789fc9e184e3ab.tar.xz |
Use pdfium::span<>/UnownedPtr in CFX_Font.
Move some platform-specific ifdefs so the come last in each
section as it is easier to read, perhaps.
Change-Id: Ic1c2652c46ecebc63b66213735ed6d94737a7f32
Reviewed-on: https://pdfium-review.googlesource.com/41630
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Reviewed-by: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'fpdfsdk/fpdf_edittext.cpp')
-rw-r--r-- | fpdfsdk/fpdf_edittext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/fpdf_edittext.cpp b/fpdfsdk/fpdf_edittext.cpp index 4dc293be8a..e99f00aee1 100644 --- a/fpdfsdk/fpdf_edittext.cpp +++ b/fpdfsdk/fpdf_edittext.cpp @@ -486,7 +486,7 @@ FPDF_EXPORT FPDF_FONT FPDF_CALLCONV FPDFText_LoadFont(FPDF_DOCUMENT document, // TODO(npm): Maybe use FT_Get_X11_Font_Format to check format? Otherwise, we // are allowing giving any font that can be loaded on freetype and setting it // as any font type. - if (!pFont->LoadEmbedded(data, size)) + if (!pFont->LoadEmbedded({data, size})) return nullptr; return FPDFFontFromCPDFFont( |