diff options
author | JUN FANG <jun_fang@foxitsoftware.com> | 2015-04-17 11:58:52 -0700 |
---|---|---|
committer | JUN FANG <jun_fang@foxitsoftware.com> | 2015-04-17 11:58:52 -0700 |
commit | 177420d424ca73db0df85ac808764f08047d4d56 (patch) | |
tree | 7848713eea09eb0b33edfa233c3628bb35349ac9 | |
parent | 3d9eb67ea0a5e110234a4576ad8d7e7305ba7074 (diff) | |
download | pdfium-177420d424ca73db0df85ac808764f08047d4d56.tar.xz |
Adjust the order of const and static
BUG=N/A
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1092993002
-rw-r--r-- | core/include/fxge/fx_font.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/include/fxge/fx_font.h b/core/include/fxge/fx_font.h index 06b55cf7ed..5cf6b38a03 100644 --- a/core/include/fxge/fx_font.h +++ b/core/include/fxge/fx_font.h @@ -314,8 +314,8 @@ public: FX_BOOL IsBuiltinFace(const FXFT_Face face) const; private: - const static size_t MM_FACE_COUNT = 2; - const static size_t FOXIT_FACE_COUNT = 14; + static const size_t MM_FACE_COUNT = 2; + static const size_t FOXIT_FACE_COUNT = 14; CFX_ByteString GetPSNameFromTT(void* hFont); CFX_ByteString MatchInstalledFonts(const CFX_ByteString& norm_name); FXFT_Face UseInternalSubst(CFX_SubstFont* pSubstFont, int iBaseFont, int italic_angle, int weight, int picthfamily); |