diff options
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/gdi/fpg_gdi.pas | 4 |
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} |