diff options
Diffstat (limited to 'xfa/fxfa/cxfa_pdffontmgr.cpp')
-rw-r--r-- | xfa/fxfa/cxfa_pdffontmgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/cxfa_pdffontmgr.cpp b/xfa/fxfa/cxfa_pdffontmgr.cpp index 6e7a2ede4b..af94ee8c82 100644 --- a/xfa/fxfa/cxfa_pdffontmgr.cpp +++ b/xfa/fxfa/cxfa_pdffontmgr.cpp @@ -162,7 +162,7 @@ bool CXFA_PDFFontMgr::PsNameMatchDRFontName(const CFX_ByteStringC& bsPsName, return false; bool bMatch = false; - switch (bsPsName.GetAt(iPsLen - 1)) { + switch (bsPsName[iPsLen - 1]) { case 'L': { if (bsDRName.Right(5) == "Light") { bMatch = true; |