Changeset 20431 in osm for applications/editors/josm/plugins/livegps/src
- Timestamp:
- 2010-03-12T08:21:45+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/livegps/src/livegps
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/livegps/src/livegps/AppendableGpxTrackSegment.java
r19680 r20431 55 55 } 56 56 57 @Override 58 public int getUpdateCount() { 59 return size; 60 } 61 57 62 } -
applications/editors/josm/plugins/livegps/src/livegps/LiveGpsAcquirer.java
r19012 r20431 28 28 29 29 /** 30 * Constructor, initializes the configurable settings. 30 * Constructor, initializes the configurable settings. 31 31 */ 32 32 public LiveGpsAcquirer() { … … 204 204 haveFix = true; 205 205 } 206 break; 206 207 default: 207 208 // not interested -
applications/editors/josm/plugins/livegps/src/livegps/LiveGpsLayer.java
r20264 r20431 30 30 float speed; 31 31 float course; 32 String status;33 32 // JLabel lbl; 34 33 boolean autocenter; -
applications/editors/josm/plugins/livegps/src/livegps/LiveGpsPlugin.java
r19448 r20431 32 32 private JMenu lgpsmenu; 33 33 private JCheckBoxMenuItem lgpscapture; 34 private JMenuItem lgpscenter;35 34 private JCheckBoxMenuItem lgpsautocenter; 36 35 private LiveGpsDialog lgpsdialog; -
applications/editors/josm/plugins/livegps/src/livegps/SingleSegmentGpxTrack.java
r20264 r20431 36 36 } 37 37 38 @Override 39 public int getUpdateCount() { 40 return trackSegment.getUpdateCount(); 41 } 42 38 43 }
Note:
See TracChangeset
for help on using the changeset viewer.