Changeset 18600 in osm for applications/editors/josm/plugins/validator/src/org
- Timestamp:
- 2009-11-14T21:40:47+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/TagChecker.java
r18192 r18600 440 440 } 441 441 } 442 if(checkPaint && p. errors!= null)443 { 444 for(String s: p. errors)442 if(checkPaint && p.getErrors() != null) 443 { 444 for(String s: p.getErrors()) 445 445 { 446 446 /* passing translated text also to original string, as we already … … 622 622 public void actionPerformed(ActionEvent e) { 623 623 String source = JOptionPane.showInputDialog( 624 Main.parent, 624 Main.parent, 625 625 tr("TagChecker source"), 626 626 tr("TagChecker source"), … … 653 653 { 654 654 JOptionPane.showMessageDialog( 655 Main.parent, 655 Main.parent, 656 656 tr("Please select the row to edit."), 657 657 tr("Information"),
Note:
See TracChangeset
for help on using the changeset viewer.