From dbbdf50c159d4849c7d424b2876b0bb393bbe0cd Mon Sep 17 00:00:00 2001 From: kramm Date: Sun, 27 Feb 2005 14:45:40 +0000 Subject: [PATCH] made moveto take double as argument --- pdf2swf/swfoutput.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdf2swf/swfoutput.cc b/pdf2swf/swfoutput.cc index 6a89156..ee7bebb 100644 --- a/pdf2swf/swfoutput.cc +++ b/pdf2swf/swfoutput.cc @@ -227,7 +227,7 @@ static int moveto(struct swfoutput*obj, TAG*tag, plotxy p0) } return 0; } -static int moveto(struct swfoutput*obj, TAG*tag, float x, float y) +static int moveto(struct swfoutput*obj, TAG*tag, double x, double y) { swfoutput_internal*i = (swfoutput_internal*)obj->internal; plotxy p; -- 1.7.10.4