summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2012-03-01 08:48:36 +0000
committerManolo Gouy <Manolo>2012-03-01 08:48:36 +0000
commit17d221bd342ced1cf1e75244d91a314b966c1c2a (patch)
tree12b546da424420d1038627923296e97aef49ac41 /src
parent0197e5b31c539458a2d8d6a91b7bf4e8e5bfc83a (diff)
Improved doc of Fl_PostScript_File_Device::start_job().
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@9257 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/Fl_PostScript.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Fl_PostScript.cxx b/src/Fl_PostScript.cxx
index d42dfbd7a..81cdcd309 100644
--- a/src/Fl_PostScript.cxx
+++ b/src/Fl_PostScript.cxx
@@ -78,7 +78,7 @@ Fl_PostScript_Graphics_Driver *Fl_PostScript_File_Device::driver()
@brief Begins the session where all graphics requests will go to a local PostScript file.
*
Opens a file dialog entitled with Fl_PostScript_File_Device::file_chooser_title to select an output PostScript file.
- @param pagecount The total number of pages to be created.
+ @param pagecount The total number of pages to be created. Use 0 if this number is unknown when this function is called.
@param format Desired page format.
@param layout Desired page layout.
@return 0 if OK, 1 if user cancelled the file dialog, 2 if fopen failed on user-selected output file.
@@ -112,7 +112,7 @@ static int dont_close(FILE *f)
*
@param ps_output A writable FILE pointer that will receive PostScript output and that should not be closed
until after end_job() has been called.
- @param pagecount The total number of pages to be created.
+ @param pagecount The total number of pages to be created. Use 0 if this number is unknown when this function is called.
@param format Desired page format.
@param layout Desired page layout.
@return always 0.