| Index: fpdfsdk/src/fpdf_sysfontinfo.cpp
|
| diff --git a/fpdfsdk/src/fpdf_sysfontinfo.cpp b/fpdfsdk/src/fpdf_sysfontinfo.cpp
|
| index 249055d344548608ef4c6e3972d3fa6fdb56a52b..cf0cdd915bdc35c232c3cbd1aa78f62fb83e1858 100644
|
| --- a/fpdfsdk/src/fpdf_sysfontinfo.cpp
|
| +++ b/fpdfsdk/src/fpdf_sysfontinfo.cpp
|
| @@ -29,10 +29,10 @@ public:
|
| return FALSE;
|
| }
|
|
|
| - virtual void* MapFont(int weight, FX_BOOL bItalic, int charset, int pitch_family, const FX_CHAR* family, FX_BOOL& bExact) override
|
| + virtual void* MapFont(int weight, FX_BOOL bItalic, int charset, int pitch_family, const FX_CHAR* family, int& iExact) override
|
| {
|
| if (m_pInfo->MapFont)
|
| - return m_pInfo->MapFont(m_pInfo, weight, bItalic, charset, pitch_family, family, &bExact);
|
| + return m_pInfo->MapFont(m_pInfo, weight, bItalic, charset, pitch_family, family, &iExact);
|
| return NULL;
|
| }
|
|
|
|
|