diff options
author | Jeremias Maerki <jeremias@apache.org> | 2006-03-30 06:40:19 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2006-03-30 06:40:19 +0000 |
commit | 94c4420bf9624dead3f9088b2fcbf25fcfb39e9b (patch) | |
tree | 61e9a28d2b53ed1d5332b8f97d42c00b224eee70 /src/documentation | |
parent | 8cfd66122fe9368a9ef690324669880994b0b6bc (diff) | |
download | xmlgraphics-fop-94c4420bf9624dead3f9088b2fcbf25fcfb39e9b.tar.gz xmlgraphics-fop-94c4420bf9624dead3f9088b2fcbf25fcfb39e9b.zip |
Added missing OutputStream parameter to one of the examples.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@390006 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/documentation')
-rw-r--r-- | src/documentation/content/xdocs/trunk/embedding.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/documentation/content/xdocs/trunk/embedding.xml b/src/documentation/content/xdocs/trunk/embedding.xml index db41a7998..98f1518a4 100644 --- a/src/documentation/content/xdocs/trunk/embedding.xml +++ b/src/documentation/content/xdocs/trunk/embedding.xml @@ -346,7 +346,7 @@ try { <source><![CDATA[ FopFactory fopFactory = FopFactory.newInstance(); //Reuse the FopFactory if possible! FOUserAgent userAgent = fopFactory.newFOUserAgent(); - Fop fop = fopFactory.newFop(MimeConstants.MIME_POSTSCRIPT, userAgent);]]></source> + Fop fop = fopFactory.newFop(MimeConstants.MIME_POSTSCRIPT, userAgent, out);]]></source> <p> You can do all sorts of things on the user agent: </p> |