slot
| 746 | |
| 747 | // slot |
| 748 | void MapPrinter::setSimulateOverprinting(bool enabled) |
| 749 | { |
| 750 | if (enabled && !map.hasSpotColors()) |
| 751 | { |
| 752 | options.simulate_overprinting = false; |
| 753 | emit optionsChanged(options); |
| 754 | } |
| 755 | else if (options.simulate_overprinting != enabled) |
| 756 | { |
| 757 | options.simulate_overprinting = enabled; |
| 758 | emit optionsChanged(options); |
| 759 | } |
| 760 | } |
| 761 | |
| 762 | void MapPrinter::setColorMode(MapPrinterOptions::ColorMode color_mode) |
| 763 | { |
no test coverage detected