summaryrefslogtreecommitdiff
path: root/src/corelib
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2012-03-09 13:08:40 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2012-03-09 16:30:36 +0200
commitbbfca88bb652c8127c370bb3a37da93a4b95f118 (patch)
tree1aa61f05becefdd5b7ac2e692bf66166bf39b5a1 /src/corelib
parenta279f187d40c867f5a7b58eeb711a3750c24ec44 (diff)
downloadfpGUI-bbfca88bb652c8127c370bb3a37da93a4b95f118.tar.xz
agg: fixes nested comments screwing with syntax highlighting.
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/render/software/agg_font_freetype.pas6
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.