| Index: core/fpdfapi/fpdf_font/cpdf_simplefont.cpp
|
| diff --git a/core/fpdfapi/fpdf_font/cpdf_simplefont.cpp b/core/fpdfapi/fpdf_font/cpdf_simplefont.cpp
|
| index dda642380f2ebf78c715ac883a1d00f95cd6e72d..3bb3730fb54e599bc9c68634977d1e9b39517bf2 100644
|
| --- a/core/fpdfapi/fpdf_font/cpdf_simplefont.cpp
|
| +++ b/core/fpdfapi/fpdf_font/cpdf_simplefont.cpp
|
| @@ -78,7 +78,7 @@ void CPDF_SimpleFont::LoadCharMetrics(int charcode) {
|
| }
|
| }
|
|
|
| -int CPDF_SimpleFont::GetCharWidthF(uint32_t charcode, int level) {
|
| +int CPDF_SimpleFont::GetCharWidthF(uint32_t charcode) {
|
| if (charcode > 0xff)
|
| charcode = 0;
|
|
|
| @@ -91,7 +91,7 @@ int CPDF_SimpleFont::GetCharWidthF(uint32_t charcode, int level) {
|
| return m_CharWidth[charcode];
|
| }
|
|
|
| -FX_RECT CPDF_SimpleFont::GetCharBBox(uint32_t charcode, int level) {
|
| +FX_RECT CPDF_SimpleFont::GetCharBBox(uint32_t charcode) {
|
| if (charcode > 0xff)
|
| charcode = 0;
|
|
|
|
|