Changeset 34611 in osm for applications


Ignore:
Timestamp:
2018-08-31T01:22:26+02:00 (6 years ago)
Author:
donvip
Message:

update to JOSM 14205

Location:
applications/editors/josm/plugins/photoadjust
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/photoadjust/build.xml

    r34543 r34611  
    55    <property name="commit.message" value="Commit message"/>
    66    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    7     <property name="plugin.main.version" value="14153"/>
     7    <property name="plugin.main.version" value="14205"/>
    88
    99    <!-- Configure these properties (replace "..." accordingly).
  • applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/PhotoPropertyEditor.java

    r34543 r34611  
    2525import org.openstreetmap.josm.data.coor.conversion.CoordinateFormatManager;
    2626import org.openstreetmap.josm.data.coor.conversion.LatLonParser;
     27import org.openstreetmap.josm.data.gpx.GpxImageEntry;
    2728import org.openstreetmap.josm.gui.ExtendedDialog;
    2829import org.openstreetmap.josm.gui.MainApplication;
     
    143144        private final GeoImageLayer layer;
    144145        // Image as it was when the dialog was opened.
    145         private final ImageEntry imgOrig;
     146        private final GpxImageEntry imgOrig;
    146147        private static final Color BG_COLOR_ERROR = new Color(255, 224, 224);
    147148
     
    405406         */
    406407        public void updateImageTmp() {
    407             ImageEntry imgTmp = image.getTmp();
     408            GpxImageEntry imgTmp = image.getTmp();
    408409
    409410            String text = coords.getText();
Note: See TracChangeset for help on using the changeset viewer.