git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
251500b
)
fixed bug in SWFOutputDev::getDimensions().
author
kramm
<kramm>
Mon, 22 Nov 2004 19:18:46 +0000
(19:18 +0000)
committer
kramm
<kramm>
Mon, 22 Nov 2004 19:18:46 +0000
(19:18 +0000)
pdf2swf/SWFOutputDev.cc
patch
|
blob
|
history
diff --git
a/pdf2swf/SWFOutputDev.cc
b/pdf2swf/SWFOutputDev.cc
index
9fc7828
..
52f00d0
100644
(file)
--- 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)