Changeset 26073 in osm for applications
- Timestamp:
- 2011-05-29T20:17:58+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/undelete
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/undelete/build.xml
r25199 r26073 31 31 32 32 <!-- enter the SVN commit message --> 33 <property name="commit.message" value="ad d rudimentary support for undeleting relations" />33 <property name="commit.message" value="adapt to core changes (backwards compatible)" /> 34 34 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 35 35 <property name="plugin.main.version" value="3835" /> -
applications/editors/josm/plugins/undelete/src/org/openstreetmap/josm/plugins/undelete/Undelete.java
r24905 r26073 119 119 Main.pref.putInteger("undelete.lasttype", cbType.getSelectedIndex()); 120 120 Main.pref.put("undelete.newlayer", layer.isSelected()); 121 Main.pref.put Integer("undelete.osmid", tfId.getOsmId());121 Main.pref.put("undelete.osmid", Long.toString(tfId.getOsmId())); 122 122 List<Long> ids=new ArrayList<Long>(); 123 123 ids.add((long)tfId.getOsmId());
Note:
See TracChangeset
for help on using the changeset viewer.