Changeset 33257 in osm for applications/editors/josm/plugins/gpsblam
- Timestamp:
- 2017-04-17T02:11:06+02:00 (8 years ago)
- Location:
- applications/editors/josm/plugins/gpsblam
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/gpsblam/build.xml
r32680 r33257 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="1 0580"/>7 <property name="plugin.main.version" value="11713"/> 8 8 9 9 <!-- -
applications/editors/josm/plugins/gpsblam/src/org/openstreetmap/josm/plugins/gpsblam/GPSBlamMode.java
r32745 r33257 39 39 GPSBlamLayer currentBlamLayer; 40 40 41 GPSBlamMode( MapFrame mapFrame,String name, String desc) {42 super(name, "gpsblam_mode.png", desc, mapFrame,Cursor.getPredefinedCursor(Cursor.CROSSHAIR_CURSOR));41 GPSBlamMode(String name, String desc) { 42 super(name, "gpsblam_mode.png", desc, Cursor.getPredefinedCursor(Cursor.CROSSHAIR_CURSOR)); 43 43 radius = 10; 44 44 } -
applications/editors/josm/plugins/gpsblam/src/org/openstreetmap/josm/plugins/gpsblam/GPSBlamPlugin.java
r30761 r33257 26 26 public GPSBlamPlugin(PluginInformation info) { 27 27 super(info); 28 mode = new GPSBlamMode( Main.map,"gpsblam", tr("select gpx points and \"blam!\", find centre and direction of spread"));28 mode = new GPSBlamMode("gpsblam", tr("select gpx points and \"blam!\", find centre and direction of spread")); 29 29 30 30 btn = new IconToggleButton(mode);
Note:
See TracChangeset
for help on using the changeset viewer.