Changeset 34611 in osm
- Timestamp:
- 2018-08-31T01:22:26+02:00 (7 years ago)
- Location:
- applications/editors/josm/plugins/photoadjust
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/photoadjust/build.xml
r34543 r34611 5 5 <property name="commit.message" value="Commit message"/> 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="14205"/> 8 8 9 9 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/PhotoPropertyEditor.java
r34543 r34611 25 25 import org.openstreetmap.josm.data.coor.conversion.CoordinateFormatManager; 26 26 import org.openstreetmap.josm.data.coor.conversion.LatLonParser; 27 import org.openstreetmap.josm.data.gpx.GpxImageEntry; 27 28 import org.openstreetmap.josm.gui.ExtendedDialog; 28 29 import org.openstreetmap.josm.gui.MainApplication; … … 143 144 private final GeoImageLayer layer; 144 145 // Image as it was when the dialog was opened. 145 private final ImageEntry imgOrig; 146 private final GpxImageEntry imgOrig; 146 147 private static final Color BG_COLOR_ERROR = new Color(255, 224, 224); 147 148 … … 405 406 */ 406 407 public void updateImageTmp() { 407 ImageEntry imgTmp = image.getTmp(); 408 GpxImageEntry imgTmp = image.getTmp(); 408 409 409 410 String text = coords.getText();
Note:
See TracChangeset
for help on using the changeset viewer.