Changeset 18377 in osm


Ignore:
Timestamp:
2009-10-30T23:13:30+01:00 (15 years ago)
Author:
dhansen
Message:

The JOSM core is changing these, so update in the plugin.

Location:
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/ValidateAction.java

    r17722 r18377  
    140140                                plugin.validationDialog.tree.setErrors(errors);
    141141                                plugin.validationDialog.setVisible(true);
    142                                 DataSet.fireSelectionChanged(Main.main.getCurrentDataSet().getSelected());
     142                                Main.main.getCurrentDataSet().fireSelectionChanged();
    143143                                }                               
    144144                        };
  • applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/ValidateUploadHook.java

    r17722 r18377  
    121121            plugin.validationDialog.tree.setErrors(errors);
    122122            plugin.validationDialog.setVisible(true);
    123             DataSet.fireSelectionChanged(Main.main.getCurrentDataSet().getSelected());
     123            Main.main.getCurrentDataSet().fireSelectionChanged();
    124124        }
    125125        return res == JOptionPane.YES_OPTION;
  • applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/ValidatorDialog.java

    r17592 r18377  
    505505                                                Main.map.repaint();
    506506                                                tree.resetErrors();
    507                                                 DataSet.fireSelectionChanged(Main.main.getCurrentDataSet().getSelected());
     507                                    Main.main.getCurrentDataSet().fireSelectionChanged();
    508508                                        }
    509509                                });
Note: See TracChangeset for help on using the changeset viewer.