| 189 | // ### MapPrinterConfig ### |
| 190 | |
| 191 | MapPrinterConfig::MapPrinterConfig(const Map& map) |
| 192 | : printer_name(QString::fromLatin1("DEFAULT")), |
| 193 | print_area(map.calculateExtent()), |
| 194 | page_format(MapPrinterPageFormat::fromDefaultPrinter()), |
| 195 | options(map.getScaleDenominator()), |
| 196 | center_print_area(false), |
| 197 | single_page_print_area(false) |
| 198 | { |
| 199 | if (print_area.isEmpty()) |
| 200 | print_area = page_format.page_rect; |
| 201 | } |
| 202 | |
| 203 | MapPrinterConfig::MapPrinterConfig(const Map& map, QXmlStreamReader& xml) |
| 204 | : printer_name(QString::fromLatin1("DEFAULT")), |
nothing calls this directly
no test coverage detected