diff options
author | Lei Zhang <thestig@chromium.org> | 2017-04-24 16:16:49 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-04-25 13:11:17 +0000 |
commit | ab1faaa7f81b7dafe03d546341c6a643a58b3678 (patch) | |
tree | 76278cedc2e5787b4a5b814cf1150efe3038c435 /xfa/fde/css/cfde_csssyntaxparser.cpp | |
parent | ef002c85521278e3082517297cf60372d7751cb1 (diff) | |
download | pdfium-ab1faaa7f81b7dafe03d546341c6a643a58b3678.tar.xz |
Use fx_extension.h utilities in more places in xfa/
Change-Id: Id58c313aa446ecfa223e5c8edc095586b62a61fa
Reviewed-on: https://pdfium-review.googlesource.com/4455
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fde/css/cfde_csssyntaxparser.cpp')
-rw-r--r-- | xfa/fde/css/cfde_csssyntaxparser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fde/css/cfde_csssyntaxparser.cpp b/xfa/fde/css/cfde_csssyntaxparser.cpp index ac1abcc665..bc861bdd6e 100644 --- a/xfa/fde/css/cfde_csssyntaxparser.cpp +++ b/xfa/fde/css/cfde_csssyntaxparser.cpp @@ -9,14 +9,14 @@ #include <algorithm> #include "core/fxcrt/fx_codepage.h" +#include "core/fxcrt/fx_extension.h" #include "xfa/fde/css/cfde_cssdeclaration.h" #include "xfa/fde/css/fde_cssdatatable.h" namespace { bool IsSelectorStart(wchar_t wch) { - return wch == '.' || wch == '#' || wch == '*' || (wch >= 'a' && wch <= 'z') || - (wch >= 'A' && wch <= 'Z'); + return wch == '.' || wch == '#' || wch == '*' || FXSYS_iswalpha(wch); } } // namespace |