Changeset 32144 in osm for applications/editors/josm/plugins/print
- Timestamp:
- 2016-04-12T13:09:14+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/print/src/org/openstreetmap/josm/plugins/print/PrintDialog.java
r30737 r32144 457 457 catch (PrinterException ex) { 458 458 String msg = ex.getLocalizedMessage(); 459 if (msg .length() == 0) {459 if (msg == null || msg.length() == 0) { 460 460 msg = tr("Printing has failed."); 461 461 } … … 470 470 } 471 471 } 472 472 473 473 protected void savePrintSettings() { 474 474 // Save only one printer service attribute: printer name
Note:
See TracChangeset
for help on using the changeset viewer.