From b595496d03c3edb32e81c3b1e220add53dcff428 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Sat, 11 Aug 2007 13:31:59 +0000 Subject: [PATCH] * minor cleanup git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21890 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/app/FontEngine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/servers/app/FontEngine.cpp b/src/servers/app/FontEngine.cpp index 63b7ddcd5c..5b9db241c8 100644 --- a/src/servers/app/FontEngine.cpp +++ b/src/servers/app/FontEngine.cpp @@ -403,9 +403,9 @@ FontEngine::CountFaces() const // PrepareGlyph bool -FontEngine::PrepareGlyph(unsigned glyph_code) +FontEngine::PrepareGlyph(unsigned glyphCode) { - fGlyphIndex = FT_Get_Char_Index(fFace, glyph_code); + fGlyphIndex = FT_Get_Char_Index(fFace, glyphCode); fLastError = FT_Load_Glyph(fFace, fGlyphIndex, fHinting ? FT_LOAD_DEFAULT : FT_LOAD_NO_HINTING); // fHinting ? FT_LOAD_FORCE_AUTOHINT : FT_LOAD_NO_HINTING);