From: kramm Date: Sun, 6 Nov 2005 22:56:24 +0000 (+0000) Subject: removed rfxswf.h references X-Git-Tag: xpdf-3-01~20 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=6ad6f59ea7bd7171487ee5be1ce679225324ddcb removed rfxswf.h references --- 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;