Changeset 18387 in osm


Ignore:
Timestamp:
2009-10-31T09:07:06+01:00 (15 years ago)
Author:
guggis
Message:

Update to r2355

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

Legend:

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

    r18297 r18387  
    2525                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    2626                <attribute name="Plugin-Description" value="Several utilities that make your life easier: e.g. simplify way, join areas, jump to position."/>
    27                 <attribute name="Plugin-Mainversion" value="2327"/>
     27                <attribute name="Plugin-Mainversion" value="2355"/>
    2828                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    2929            </manifest>
  • applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/JoinAreasAction.java

    r17550 r18387  
    170170        if(joinAreas(selWays[0], selWays[ways == 2 ? 1 : 0])) {
    171171            Main.map.mapView.repaint();
    172             DataSet.fireSelectionChanged(Main.main.getCurrentDataSet().getSelected());
     172            DataSet ds = Main.main.getCurrentDataSet();
     173            ds.fireSelectionChanged();
    173174        } else
    174175            JOptionPane.showMessageDialog(Main.parent, tr("No intersection found. Nothing was changed."));
Note: See TracChangeset for help on using the changeset viewer.