made moveto take double as argument
authorkramm <kramm>
Sun, 27 Feb 2005 14:45:40 +0000 (14:45 +0000)
committerkramm <kramm>
Sun, 27 Feb 2005 14:45:40 +0000 (14:45 +0000)
pdf2swf/swfoutput.cc

index 6a89156..ee7bebb 100644 (file)
@@ -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;