From 6ad6f59ea7bd7171487ee5be1ce679225324ddcb Mon Sep 17 00:00:00 2001 From: kramm Date: Sun, 6 Nov 2005 22:56:24 +0000 Subject: [PATCH] removed rfxswf.h references --- lib/gfxtools.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/gfxtools.c b/lib/gfxtools.c index cd08a42..77088ee 100644 --- a/lib/gfxtools.c +++ b/lib/gfxtools.c @@ -312,13 +312,13 @@ gfxline_t* gfxtool_dash_line(gfxline_t*line, float*dashes, float phase) void gfxline_show(gfxline_t*l, FILE*fi) { while(l) { - if(l->type == moveTo) { + if(l->type == gfx_moveTo) { fprintf(fi, "moveTo %.2f,%.2f\n", l->x, l->y); } - if(l->type == lineTo) { + if(l->type == gfx_lineTo) { fprintf(fi, "lineTo %.2f,%.2f\n", l->x, l->y); } - if(l->type == splineTo) { + if(l->type == gfx_splineTo) { fprintf(fi, "splineTo %.2f,%.2f %.2f,%.2f\n", l->sx, l->sy, l->x, l->y); } l = l->next; -- 1.7.10.4