diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-08-17 17:07:25 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-08-17 17:07:25 -0700 |
commit | cb4d0ea68308e3c51a6ba9551b393bb2f639afc4 (patch) | |
tree | 9656861eea392094c8493abb31927514170ecb76 /core/src/fxge | |
parent | 9cf44c2ed09a8b2ff243eb6dbb72a8cceae1b5ff (diff) | |
download | pdfium-cb4d0ea68308e3c51a6ba9551b393bb2f639afc4.tar.xz |
Fix fix fix of mac build breakage at 9cf44c2e
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1296403002 .
Diffstat (limited to 'core/src/fxge')
-rw-r--r-- | core/src/fxge/apple/fx_mac_imp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/fxge/apple/fx_mac_imp.cpp b/core/src/fxge/apple/fx_mac_imp.cpp index 465dd96afa..41333f8bf4 100644 --- a/core/src/fxge/apple/fx_mac_imp.cpp +++ b/core/src/fxge/apple/fx_mac_imp.cpp @@ -88,7 +88,7 @@ void* CFX_MacFontInfo::MapFont(int weight, case FXFONT_CHINESEBIG5_CHARSET: face = "LiSong Pro Light"; } - it = m_FontList.Lookup(face); + it = m_FontList.find(face); if (it != m_FontList.end()) return it->second; |