Index: core/fxge/ge/fx_ge_fontmap.cpp |
diff --git a/core/fxge/ge/fx_ge_fontmap.cpp b/core/fxge/ge/fx_ge_fontmap.cpp |
index 709ef0031bf2f96178d29a6a86e1b24a0fa72785..c6a6c5c0030a205d99952b6f6c87652fab2aa4f4 100644 |
--- a/core/fxge/ge/fx_ge_fontmap.cpp |
+++ b/core/fxge/ge/fx_ge_fontmap.cpp |
@@ -1329,12 +1329,12 @@ int CFX_FontMapper::GetFaceSize() const { |
} |
FX_BOOL CFX_FontMapper::IsBuiltinFace(const FXFT_Face face) const { |
- for (int i = 0; i < MM_FACE_COUNT; ++i) { |
+ for (size_t i = 0; i < MM_FACE_COUNT; ++i) { |
if (m_MMFaces[i] == face) { |
return TRUE; |
} |
} |
- for (int i = 0; i < FOXIT_FACE_COUNT; ++i) { |
+ for (size_t i = 0; i < FOXIT_FACE_COUNT; ++i) { |
if (m_FoxitFaces[i] == face) { |
return TRUE; |
} |