diff options
author | npm <npm@chromium.org> | 2016-09-23 16:54:50 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-09-23 16:54:50 -0700 |
commit | bfe9afc2ab1d883bb036a1c3b35b429229708875 (patch) | |
tree | 75572f3a19e07ec73a7f15fb3811e78d72f3104e /fpdfsdk/cfx_systemhandler.cpp | |
parent | b4d7c682bd47f12cb16a5c5c523f58ea0742c730 (diff) | |
download | pdfium-bfe9afc2ab1d883bb036a1c3b35b429229708875.tar.xz |
Remove FX_BOOL from cpdf_fontchromium/2872chromium/2871chromium/2870
In all cases, bool can be used instead without problems.
Review-Url: https://codereview.chromium.org/2368693002
Diffstat (limited to 'fpdfsdk/cfx_systemhandler.cpp')
-rw-r--r-- | fpdfsdk/cfx_systemhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/cfx_systemhandler.cpp b/fpdfsdk/cfx_systemhandler.cpp index cbd929f5c2..edcc094c17 100644 --- a/fpdfsdk/cfx_systemhandler.cpp +++ b/fpdfsdk/cfx_systemhandler.cpp @@ -117,7 +117,7 @@ CPDF_Font* CFX_SystemHandler::AddNativeTrueTypeFontToPDF( return nullptr; std::unique_ptr<CFX_Font> pFXFont(new CFX_Font); - pFXFont->LoadSubst(sFontFaceName, TRUE, 0, 0, 0, CharSet2CP(nCharset), FALSE); + pFXFont->LoadSubst(sFontFaceName, TRUE, 0, 0, 0, CharSet2CP(nCharset), false); return pDoc->AddFont(pFXFont.get(), nCharset, FALSE); } |