Changeset 18600 in osm for applications


Ignore:
Timestamp:
2009-11-14T21:40:47+01:00 (15 years ago)
Author:
jttt
Message:

OsmPrimitive.errors -> OsmPrimitive.getErrors()

Location:
applications/editors/josm/plugins/validator
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/validator/build.xml

    r18593 r18600  
    2727        -->
    2828        <property name="commit.message" value="Updated build.xml" />           
    29         <property name="plugin.main.version" value="2450" />
     29        <property name="plugin.main.version" value="2452" />
    3030               
    3131               
  • applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/TagChecker.java

    r18192 r18600  
    440440            }
    441441        }
    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())
    445445            {
    446446                /* passing translated text also to original string, as we already
     
    622622            public void actionPerformed(ActionEvent e) {
    623623                String source = JOptionPane.showInputDialog(
    624                                 Main.parent, 
     624                                Main.parent,
    625625                                tr("TagChecker source"),
    626626                                tr("TagChecker source"),
     
    653653                    {
    654654                        JOptionPane.showMessageDialog(
    655                                         Main.parent, 
     655                                        Main.parent,
    656656                                        tr("Please select the row to edit."),
    657657                                        tr("Information"),
Note: See TracChangeset for help on using the changeset viewer.