summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2010-06-29 14:21:26 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2010-06-29 14:21:26 +0200
commitf5c6729ff0c1bb1b0078c1bdfb50bb56a9293d6f (patch)
treecba887b17794280d99005bc3563e63297abd2140
parent09608574e4c7eae2f1e104749d69b09455ffb073 (diff)
downloadfpGUI-f5c6729ff0c1bb1b0078c1bdfb50bb56a9293d6f.tar.xz
Removed special characters from code comments.
-rw-r--r--src/corelib/gdi/fpg_gdi.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/gdi/fpg_gdi.pas b/src/corelib/gdi/fpg_gdi.pas
index e8b05ede..e242bfb6 100644
--- a/src/corelib/gdi/fpg_gdi.pas
+++ b/src/corelib/gdi/fpg_gdi.pas
@@ -1774,7 +1774,7 @@ procedure TfpgGDICanvas.DoDrawArc(x, y, w, h: TfpgCoord; a1, a2: Extended);
var
SX, SY, EX, EY: Longint;
begin
- {Stupid GDI can't tell the difference between 0 and 360°!!}
+ {Stupid GDI can't tell the difference between 0 and 360 degrees!!}
if a2 = 0 then
Exit; //==>
{Stupid GDI must be told in which direction to draw}
@@ -1794,7 +1794,7 @@ procedure TfpgGDICanvas.DoFillArc(x, y, w, h: TfpgCoord; a1, a2: Extended);
var
SX, SY, EX, EY: Longint;
begin
- {Stupid GDI can't tell the difference between 0 and 360°!!}
+ {Stupid GDI can't tell the difference between 0 and 360 degrees!!}
if a2 = 0 then
Exit; //==>
{Stupid GDI must be told in which direction to draw}