mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
printing: don't access displayed_dive in printing code
To phase out this global variable, avoid access of displayed_dive in the printing code. This is used when printing a plan. Instead, when in plan-mode, pass the planned dive to the printing code as a single dive to be printed. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
80df790efc
commit
d51589b9a7
8 changed files with 44 additions and 29 deletions
|
|
@ -19,9 +19,9 @@
|
|||
|
||||
template_options::color_palette_struct ssrf_colors, almond_colors, blueshades_colors, custom_colors;
|
||||
|
||||
PrintDialog::PrintDialog(bool inPlanner, QWidget *parent) :
|
||||
PrintDialog::PrintDialog(dive *singleDive, QWidget *parent) :
|
||||
QDialog(parent, QFlag(0)),
|
||||
inPlanner(inPlanner),
|
||||
singleDive(singleDive),
|
||||
printer(NULL),
|
||||
qprinter(NULL)
|
||||
{
|
||||
|
|
@ -179,7 +179,7 @@ void PrintDialog::createPrinterObj()
|
|||
qprinter = new QPrinter;
|
||||
qprinter->setResolution(printOptions.resolution);
|
||||
qprinter->setOrientation((QPrinter::Orientation)printOptions.landscape);
|
||||
printer = new Printer(qprinter, printOptions, templateOptions, Printer::PRINT, inPlanner);
|
||||
printer = new Printer(qprinter, printOptions, templateOptions, Printer::PRINT, singleDive);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue