function rename, struct DISPDEVICE . Arc() -> DrawArc()
This commit is contained in:
parent
76d22c3691
commit
4f915cb283
|
|
@ -1,3 +1,8 @@
|
|||
2010-09-08 Robert Larice
|
||||
* src/frontend/display.c ,
|
||||
* src/include/ftedev.h :
|
||||
function rename, struct DISPDEVICE . Arc() -> DrawArc()
|
||||
|
||||
2010-09-08 Robert Larice
|
||||
* src/frontend/display.c ,
|
||||
* src/frontend/display.h ,
|
||||
|
|
|
|||
|
|
@ -212,7 +212,7 @@ void DevDrawLine(int x1, int y1, int x2, int y2)
|
|||
void DevDrawArc(int x0, int y0, int radius, double theta, double delta_theta)
|
||||
{
|
||||
|
||||
(*(dispdev->Arc))(x0, y0, radius, theta, delta_theta);
|
||||
(*(dispdev->DrawArc))(x0, y0, radius, theta, delta_theta);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ typedef struct {
|
|||
disp_fn_Close_t *Close;
|
||||
disp_fn_Clear_t *Clear;
|
||||
disp_fn_DrawLine_t *DrawLine;
|
||||
disp_fn_Arc_t *Arc;
|
||||
disp_fn_Arc_t *DrawArc;
|
||||
disp_fn_Text_t *Text;
|
||||
disp_fn_DefineColor_t *DefineColor;
|
||||
disp_fn_DefineLinestyle_t *DefineLinestyle;
|
||||
|
|
|
|||
Loading…
Reference in New Issue