summaryrefslogtreecommitdiff
path: root/FL/Fl_Printer.H
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2019-10-22 13:16:14 +0200
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2019-10-22 13:16:14 +0200
commit4f8e692f30807aeea3284bfccc929823281ce899 (patch)
tree31801953837a3163b987210affe2c042df7a3acf /FL/Fl_Printer.H
parent80f574046840a33e15da87dd18e7b576c67f222e (diff)
Add default value of 0 for 1st arg of member function Fl_Printer::begin_job().
Diffstat (limited to 'FL/Fl_Printer.H')
-rw-r--r--FL/Fl_Printer.H2
1 files changed, 1 insertions, 1 deletions
diff --git a/FL/Fl_Printer.H b/FL/Fl_Printer.H
index c96014dfb..977f75762 100644
--- a/FL/Fl_Printer.H
+++ b/FL/Fl_Printer.H
@@ -93,7 +93,7 @@ private:
public:
/** The constructor */
Fl_Printer(void);
- int begin_job(int pagecount, int *frompage = NULL, int *topage = NULL);
+ int begin_job(int pagecount = 0, int *frompage = NULL, int *topage = NULL);
int begin_page(void);
int printable_rect(int *w, int *h);
void margins(int *left, int *top, int *right, int *bottom);