| 230 | } |
| 231 | |
| 232 | int CanvasExportSettingDialog::GetMapWidth() |
| 233 | { |
| 234 | double val = tc1_value; |
| 235 | if (unit_choice == 1) { |
| 236 | return inch2pixel(val); |
| 237 | } else if (unit_choice == 2) { |
| 238 | return mm2pixel(val); |
| 239 | } |
| 240 | return val; |
| 241 | } |
| 242 | |
| 243 | int CanvasExportSettingDialog::GetMapHeight() |
| 244 | { |
no outgoing calls
no test coverage detected