From 89de887d9a11f7b8a42dcf68c13a1ffd384ced21 Mon Sep 17 00:00:00 2001 From: kramm Date: Mon, 22 Nov 2004 19:18:46 +0000 Subject: [PATCH] fixed bug in SWFOutputDev::getDimensions(). --- pdf2swf/SWFOutputDev.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 1.7.10.4