Changeset 34503 in osm
- Timestamp:
- 2018-08-18T03:46:17+02:00 (6 years ago)
- Location:
- applications/editors/josm/plugins/download_along
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/download_along/build.xml
r33710 r34503 4 4 <property name="commit.message" value="Changed the constructor signature of the plugin main class"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="1 2643"/>6 <property name="plugin.main.version" value="14153"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/download_along/src/org/openstreetmap/josm/plugin/download_along/DownloadAlongWayAction.java
r34081 r34503 15 15 import javax.swing.JOptionPane; 16 16 17 import org.openstreetmap.josm.Main;18 17 import org.openstreetmap.josm.actions.DownloadAlongAction; 19 18 import org.openstreetmap.josm.data.coor.LatLon; … … 21 20 import org.openstreetmap.josm.data.osm.OsmPrimitive; 22 21 import org.openstreetmap.josm.data.osm.Way; 22 import org.openstreetmap.josm.gui.MainApplication; 23 23 import org.openstreetmap.josm.gui.help.HelpUtil; 24 24 import org.openstreetmap.josm.gui.layer.gpx.DownloadAlongPanel; … … 47 47 48 48 if (selectedWays.isEmpty()) { 49 JOptionPane.showMessageDialog(Main .parent, tr("Please select 1 or more ways to download along"));49 JOptionPane.showMessageDialog(MainApplication.getMainFrame(), tr("Please select 1 or more ways to download along")); 50 50 return; 51 51 }
Note:
See TracChangeset
for help on using the changeset viewer.