From: kramm <kramm>
Date: Mon, 22 Nov 2004 19:18:46 +0000 (+0000)
Subject: fixed bug in SWFOutputDev::getDimensions().
X-Git-Tag: release-0-6-3~150
X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;h=89de887d9a11f7b8a42dcf68c13a1ffd384ced21;p=swftools.git

fixed bug in SWFOutputDev::getDimensions().
---

diff --git a/pdf2swf/SWFOutputDev.cc b/pdf2swf/SWFOutputDev.cc
index 9fc7828..52f00d0 100644
--- a/pdf2swf/SWFOutputDev.cc
+++ b/pdf2swf/SWFOutputDev.cc
@@ -355,7 +355,7 @@ void SWFOutputDev::setClip(int x1,int y1,int x2,int y2)
 }
 void SWFOutputDev::getDimensions(int*x1,int*y1,int*x2,int*y2)
 {
-    return swfoutput_getdimensions(&output, x1,y2,x2,y2);
+    return swfoutput_getdimensions(&output, x1,y1,x2,y2);
 }
 
 static char*getFontID(GfxFont*font)