diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-03-09 13:08:40 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-03-09 16:30:36 +0200 |
commit | bbfca88bb652c8127c370bb3a37da93a4b95f118 (patch) | |
tree | 1aa61f05becefdd5b7ac2e692bf66166bf39b5a1 /src/corelib/render | |
parent | a279f187d40c867f5a7b58eeb711a3750c24ec44 (diff) | |
download | fpGUI-bbfca88bb652c8127c370bb3a37da93a4b95f118.tar.xz |
agg: fixes nested comments screwing with syntax highlighting.
Diffstat (limited to 'src/corelib/render')
-rw-r--r-- | src/corelib/render/software/agg_font_freetype.pas | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/corelib/render/software/agg_font_freetype.pas b/src/corelib/render/software/agg_font_freetype.pas index 1fdbfdd9..99b646f7 100644 --- a/src/corelib/render/software/agg_font_freetype.pas +++ b/src/corelib/render/software/agg_font_freetype.pas @@ -23,7 +23,7 @@ // 17.09.2007-Milano: Porting & Finished OK // 16.09.2007-Milano: Unit port establishment // -{ agg_font_freetype.pas } + unit agg_font_freetype ; @@ -1238,7 +1238,7 @@ begin m_glyph_index:=FT_Get_Char_Index(m_cur_face ,glyph_code ); if m_hinting then - m_last_error:=FT_Load_Glyph(m_cur_face ,m_glyph_index ,FT_LOAD_DEFAULT{} {FT_LOAD_FORCE_AUTOHINT{} ) + m_last_error:=FT_Load_Glyph(m_cur_face ,m_glyph_index ,FT_LOAD_DEFAULT {FT_LOAD_FORCE_AUTOHINT} ) else m_last_error:=FT_Load_Glyph(m_cur_face ,m_glyph_index ,FT_LOAD_NO_HINTING ); @@ -1727,5 +1727,5 @@ begin end; -END. +end. |