Changeset 33385 in osm
- Timestamp:
- 2017-06-08T00:55:27+02:00 (8 years ago)
- Location:
- applications/editors/josm/plugins/piclayer
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/piclayer/build.xml
r32680 r33385 3 3 <property name="commit.message" value="[josm/PicLayer] - #12045 add ability to localize dialog titles"/> 4 4 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 5 <property name="plugin.main.version" value="1 0580"/>5 <property name="plugin.main.version" value="11713"/> 6 6 7 7 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/piclayer/src/org/openstreetmap/josm/plugins/piclayer/actions/GenericPicTransformAction.java
r33384 r33385 30 30 public GenericPicTransformAction(String name, String actionName, String iconName, 31 31 String tooltip, Shortcut shortcut, MapFrame mapFrame, Cursor cursor) { 32 super(name, iconName, tooltip, shortcut, mapFrame,cursor);32 super(name, iconName, tooltip, shortcut, cursor); 33 33 this.actionName = actionName; 34 34 } … … 36 36 public GenericPicTransformAction(String name, String actionName, String iconName, 37 37 String tooltip, MapFrame mapFrame, Cursor cursor) { 38 super(name, iconName, tooltip, mapFrame,cursor);38 super(name, iconName, tooltip, cursor); 39 39 this.actionName = actionName; 40 40 } -
applications/editors/josm/plugins/piclayer/src/org/openstreetmap/josm/plugins/piclayer/actions/newlayer/NewLayerFromFileAction.java
r32675 r33385 55 55 * Provides filtering of only image files. 56 56 */ 57 private class ImageFileFilter extends FileFilter {57 private static class ImageFileFilter extends FileFilter { 58 58 59 59 private String[] supportedExtensions;
Note:
See TracChangeset
for help on using the changeset viewer.