From bfe9afc2ab1d883bb036a1c3b35b429229708875 Mon Sep 17 00:00:00 2001 From: npm Date: Fri, 23 Sep 2016 16:54:50 -0700 Subject: Remove FX_BOOL from cpdf_font In all cases, bool can be used instead without problems. Review-Url: https://codereview.chromium.org/2368693002 --- xfa/fgas/font/fgas_gefont.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xfa') diff --git a/xfa/fgas/font/fgas_gefont.cpp b/xfa/fgas/font/fgas_gefont.cpp index e386a0f208..8233705342 100644 --- a/xfa/fgas/font/fgas_gefont.cpp +++ b/xfa/fgas/font/fgas_gefont.cpp @@ -196,7 +196,7 @@ FX_BOOL CFGAS_GEFont::LoadFontInternal(const FX_WCHAR* pszFontFamily, } else if (dwFlags & FXFONT_ITALIC) { csFontFamily += ",Italic"; } - m_pFont->LoadSubst(csFontFamily, TRUE, dwFlags, iWeight, 0, wCodePage); + m_pFont->LoadSubst(csFontFamily, TRUE, dwFlags, iWeight, 0, wCodePage, false); if (!m_pFont->GetFace()) return false; return InitFont(); -- cgit v1.2.3