Changeset 34748 in osm for applications/editors
- Timestamp:
- 2018-11-28T22:56:05+01:00 (6 years ago)
- Location:
- applications/editors/josm/plugins/dataimport
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/dataimport/build.xml
r34475 r34748 5 5 <property name="commit.message" value="Changed constructor signature, updated build.xml"/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 <property name="plugin.main.version" value="14 153"/>7 <property name="plugin.main.version" value="14456"/> 8 8 9 9 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/Tcx.java
r34475 r34748 132 132 133 133 if (time != null) { 134 waypt.attr.put("time", time.toString()); 135 waypt.time = .001 * time.toGregorianCalendar().getTimeInMillis(); 134 waypt.setTimeInMillis(time.toGregorianCalendar().getTimeInMillis()); 136 135 } 137 136
Note:
See TracChangeset
for help on using the changeset viewer.