function rename, struct DISPDEVICE . Text() -> DrawText()
This commit is contained in:
parent
4f915cb283
commit
af4589529d
|
|
@ -1,3 +1,8 @@
|
|||
2010-09-08 Robert Larice
|
||||
* src/frontend/display.c ,
|
||||
* src/include/ftedev.h :
|
||||
function rename, struct DISPDEVICE . Text() -> DrawText()
|
||||
|
||||
2010-09-08 Robert Larice
|
||||
* src/frontend/display.c ,
|
||||
* src/include/ftedev.h :
|
||||
|
|
|
|||
|
|
@ -219,7 +219,7 @@ void DevDrawArc(int x0, int y0, int radius, double theta, double delta_theta)
|
|||
void DevDrawText(char *text, int x, int y)
|
||||
{
|
||||
|
||||
(*(dispdev->Text))(text, x, y);
|
||||
(*(dispdev->DrawText))(text, x, y);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ typedef struct {
|
|||
disp_fn_Clear_t *Clear;
|
||||
disp_fn_DrawLine_t *DrawLine;
|
||||
disp_fn_Arc_t *DrawArc;
|
||||
disp_fn_Text_t *Text;
|
||||
disp_fn_Text_t *DrawText;
|
||||
disp_fn_DefineColor_t *DefineColor;
|
||||
disp_fn_DefineLinestyle_t *DefineLinestyle;
|
||||
disp_fn_SetLinestyle_t *SetLinestyle;
|
||||
|
|
|
|||
Loading…
Reference in New Issue