| Index: core/src/fxge/apple/fx_mac_imp.cpp
|
| diff --git a/core/src/fxge/apple/fx_mac_imp.cpp b/core/src/fxge/apple/fx_mac_imp.cpp
|
| index 88a51bd78cfa6cddbe8546f3a566856f084a2164..07e3d02c4c0e93536792c2fc53fa845025d50f8c 100644
|
| --- a/core/src/fxge/apple/fx_mac_imp.cpp
|
| +++ b/core/src/fxge/apple/fx_mac_imp.cpp
|
| @@ -94,7 +94,7 @@ void* CFX_MacFontInfo::MapFont(int weight,
|
|
|
| return NULL;
|
| }
|
| -IFX_SystemFontInfo* IFX_SystemFontInfo::CreateDefault() {
|
| +IFX_SystemFontInfo* IFX_SystemFontInfo::CreateDefault(const char** pUnused) {
|
| CFX_MacFontInfo* pInfo = new CFX_MacFontInfo;
|
| if (!pInfo) {
|
| return NULL;
|
| @@ -106,7 +106,7 @@ IFX_SystemFontInfo* IFX_SystemFontInfo::CreateDefault() {
|
| }
|
| void CFX_GEModule::InitPlatform() {
|
| m_pPlatformData = new CApplePlatform;
|
| - m_pFontMgr->SetSystemFontInfo(IFX_SystemFontInfo::CreateDefault());
|
| + m_pFontMgr->SetSystemFontInfo(IFX_SystemFontInfo::CreateDefault(nullptr));
|
| }
|
| void CFX_GEModule::DestroyPlatform() {
|
| delete (CApplePlatform*)m_pPlatformData;
|
|
|