| 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 8a39db6c379076a1bab56ab7c2592a107c8a54ae..465dd96afa2e8acd4b902e8d219ded5584a1b5c0 100644
|
| --- a/core/src/fxge/apple/fx_mac_imp.cpp
|
| +++ b/core/src/fxge/apple/fx_mac_imp.cpp
|
| @@ -66,7 +66,7 @@ void* CFX_MacFontInfo::MapFont(int weight,
|
| return GetFont(face);
|
| }
|
| auto it = m_FontList.find(face);
|
| - if (it != m_FontList.end)
|
| + if (it != m_FontList.end())
|
| return it->second;
|
|
|
| if (charset == FXFONT_ANSI_CHARSET && (pitch_family & FXFONT_FF_FIXEDPITCH)) {
|
| @@ -89,7 +89,7 @@ void* CFX_MacFontInfo::MapFont(int weight,
|
| face = "LiSong Pro Light";
|
| }
|
| it = m_FontList.Lookup(face);
|
| - if (it != m_FontList.end)
|
| + if (it != m_FontList.end())
|
| return it->second;
|
|
|
| return NULL;
|
|
|