Changeset 29778 in osm for applications/editors/josm/plugins/download_along
- Timestamp:
- 2013-07-25T21:57:38+02:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/download_along
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/download_along/build.xml
r29746 r29778 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="60 54"/>6 <property name="plugin.main.version" value="6082"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/download_along/src/org/openstreetmap/josm/plugin/download_along/DownloadAlong.java
r29746 r29778 10 10 public DownloadAlong(PluginInformation info) { 11 11 super(info); 12 MainMenu.add(Main.main.menu. toolsMenu, new DownloadAlongWayAction());12 MainMenu.add(Main.main.menu.moreToolsMenu, new DownloadAlongWayAction()); 13 13 } 14 14 } -
applications/editors/josm/plugins/download_along/src/org/openstreetmap/josm/plugin/download_along/DownloadAlongWayAction.java
r29746 r29778 39 39 } 40 40 41 @Override 41 42 public void actionPerformed(ActionEvent e) { 42 43 Set<Way> selectedWays = OsmPrimitive.getFilteredSet(Main.main.getCurrentDataSet().getSelected(), Way.class);
Note:
See TracChangeset
for help on using the changeset viewer.