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:
aea0e69
)
fixed endless loop bug.
author
kramm
<kramm>
Thu, 21 Oct 2004 17:47:45 +0000
(17:47 +0000)
committer
kramm
<kramm>
Thu, 21 Oct 2004 17:47:45 +0000
(17:47 +0000)
pdf2swf/SWFOutputDev.cc
patch
|
blob
|
history
diff --git
a/pdf2swf/SWFOutputDev.cc
b/pdf2swf/SWFOutputDev.cc
index
b91ed52
..
23cb0c3
100644
(file)
--- a/
pdf2swf/SWFOutputDev.cc
+++ b/
pdf2swf/SWFOutputDev.cc
@@
-2117,7
+2117,7
@@
void pdf_page_rendersection(pdf_page_t*page, swf_output_t*output, int x, int y,
if((x1|y1|x2|y2)==0) x2++;
si->outputDev->setClip(x1,y1,x2,y2);
- pdf_page_render(page, output);
+ pdf_page_render2(page, output);
}
void pdf_page_render(pdf_page_t*page, swf_output_t*output)
{
@@
-2127,7
+2127,7
@@
void pdf_page_render(pdf_page_t*page, swf_output_t*output)
si->outputDev->setMove(0,0);
si->outputDev->setClip(0,0,0,0);
- pdf_page_render(page, output);
+ pdf_page_render2(page, output);
}