Changeset 18600 in osm for applications
- Timestamp:
- 2009-11-14T21:40:47+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/validator
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/build.xml
r18593 r18600 27 27 --> 28 28 <property name="commit.message" value="Updated build.xml" /> 29 <property name="plugin.main.version" value="245 0" />29 <property name="plugin.main.version" value="2452" /> 30 30 31 31 -
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.