Changeset 26416 in osm for applications/editors
- Timestamp:
- 2011-07-29T10:33:36+02:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/proj4j
- Files:
-
- 6 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/proj4j/build.xml
r26409 r26416 80 80 <echo message="creating ${ant.project.name}.jar ... "/> 81 81 <copy todir="${plugin.build.dir}/resources"> 82 <fileset dir="resources"/> 82 <fileset dir="resources" excludes="nad/"/> 83 </copy> 84 <copy todir="${plugin.build.dir}/nad"> 85 <fileset dir="resources/nad"/> 83 86 </copy> 84 87 <copy todir="${plugin.build.dir}/images"> -
applications/editors/josm/plugins/proj4j/src/org/openstreetmap/josm/plugins/proj4j/ProjectionProj4J.java
r26407 r26416 247 247 selectedLabel.setText(tr("Selected: {0}", crsCode)); 248 248 setupTransformations(); 249 if (actionListener != null) { 250 actionListener.actionPerformed(new ActionEvent(selectedLabel, 0, "CRS changed")); 251 } 249 252 } 250 253 } … … 277 280 transformToWGS84 = transFactory.createTransform(proj4jCRS, wgs84CRS); 278 281 transformFromWGS84 = transFactory.createTransform(wgs84CRS, proj4jCRS); 279 280 if (actionListener != null) {281 actionListener.actionPerformed(new ActionEvent(selectedLabel, 0, "CRS changed"));282 }283 282 } 284 283
Note:
See TracChangeset
for help on using the changeset viewer.