diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-03-09 13:02:52 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-03-09 13:02:52 +0200 |
commit | d71b9b9efb54d8b71c6df589eee8a187193a319b (patch) | |
tree | 74e1e8f77d60135d30884d01bc243d4ace34c5fc /src/corelib/render | |
parent | f007b896843fac966d8c7e1b7dc5a8151658fb93 (diff) | |
download | fpGUI-d71b9b9efb54d8b71c6df589eee8a187193a319b.tar.xz |
Fixes the issue with nested comments in Agg2DDemo.dpr
Causing syntax highlighting to be screwed.
Diffstat (limited to 'src/corelib/render')
-rw-r--r-- | src/corelib/render/software/agg-demos/Agg2DDemo.dpr | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/corelib/render/software/agg-demos/Agg2DDemo.dpr b/src/corelib/render/software/agg-demos/Agg2DDemo.dpr index 9d5b7f4d..5f4877f4 100644 --- a/src/corelib/render/software/agg-demos/Agg2DDemo.dpr +++ b/src/corelib/render/software/agg-demos/Agg2DDemo.dpr @@ -159,7 +159,7 @@ begin { m_graphics.font(char_ptr(FONT_TIMES ) ,14.0 ,false ,false ); m_graphics.fillColor(0 ,0 ,0 ); m_graphics.noLine; - m_graphics.text(100 ,20 ,char_ptr(PChar('Regular Raster Text -- Fast, but can''t be rotated' ) ) );{} + m_graphics.text(100 ,20 ,char_ptr(PChar('Regular Raster Text -- Fast, but can''t be rotated' ) ) ); } // Outlined Text m_graphics.font(char_ptr(FONT_TIMES ) ,50.0 ,false ,false ,{RasterFontCache}VectorFontCache ); @@ -177,7 +177,7 @@ begin m_graphics.noLine; m_graphics.text(12.5 ,565.5 ,char_ptr(@m_gmText[1 ] ) ); - //m_graphics.rectangle(12.5 ,565.5 ,290 ,590 ); (**) + //m_graphics.rectangle(12.5 ,565.5 ,290 ,590 ); *) // Text Alignment m_graphics.lineColor(0 ,0 ,0 ); @@ -559,7 +559,7 @@ begin m_graphics.lineColor(221 ,160 ,221 ); m_graphics.lineWidth(6 ); - m_graphics.polyline (@poly[0 ] ,6 ); (**) + m_graphics.polyline (@poly[0 ] ,6 ); *) // TIMER DRAW // ---------- @@ -755,4 +755,5 @@ BEGIN app.Destruct; -END.
\ No newline at end of file +end. + |