diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-04-03 14:58:55 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-04-03 20:38:26 +0000 |
commit | 2ae80f52cec81c080515724f99deb06b2fee3cc9 (patch) | |
tree | 12542e725f915f72350b47c9703eae0a62c6e79f /xfa/fgas/font | |
parent | ba8ac3f14e5eecb0c37b0df67370304cc1682755 (diff) | |
download | pdfium-2ae80f52cec81c080515724f99deb06b2fee3cc9.tar.xz |
Drop FXSYS_ from wide string methods
This Cl drops the FXSYS_ from wide string methods which are the same on
all platforms.
Bug: pdfium:694
Change-Id: I46a7af5913e7897f7c4ba712a76540c12105818f
Reviewed-on: https://pdfium-review.googlesource.com/3611
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fgas/font')
-rw-r--r-- | xfa/fgas/font/cfgas_fontmgr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fgas/font/cfgas_fontmgr.h b/xfa/fgas/font/cfgas_fontmgr.h index 87334d21d1..c0b59f4dd7 100644 --- a/xfa/fgas/font/cfgas_fontmgr.h +++ b/xfa/fgas/font/cfgas_fontmgr.h @@ -71,7 +71,7 @@ inline bool operator==(const FX_FONTDESCRIPTOR& left, return left.uCharSet == right.uCharSet && left.dwFontStyles == right.dwFontStyles && left.FontSignature == right.FontSignature && - FXSYS_wcscmp(left.wsFontFace, right.wsFontFace) == 0; + wcscmp(left.wsFontFace, right.wsFontFace) == 0; } typedef void (*FX_LPEnumAllFonts)(std::deque<FX_FONTDESCRIPTOR>* fonts, |