Index: applications/editors/josm/plugins/livegps/build.xml
===================================================================
--- applications/editors/josm/plugins/livegps/build.xml	(revision 20264)
+++ applications/editors/josm/plugins/livegps/build.xml	(revision 20431)
@@ -18,5 +18,5 @@
 **
 ** To build against the core in ../../core, create a correct manifest and deploy to
-** SVN, 
+** SVN,
 **    set the properties commit.message and plugin.main.version
 ** and run
@@ -28,6 +28,6 @@
 
 	<property name="commit.message" value="Changed the constructor signature of the plugin main class" />
-	<property name="plugin.main.version" value="2907" />
-	
+	<property name="plugin.main.version" value="3119" />
+
 
 	<property name="josm"                   location="../../core/dist/josm-custom.jar"/>
@@ -89,8 +89,8 @@
 
 	<!--
-		 ************************** Publishing the plugin *********************************** 
+		 ************************** Publishing the plugin ***********************************
 		-->
 	<!--
-		** extracts the JOSM release for the JOSM version in ../core and saves it in the 
+		** extracts the JOSM release for the JOSM version in ../core and saves it in the
 		** property ${coreversion.info.entry.revision}
 		**
@@ -141,15 +141,15 @@
 
 	<!--
-		** commits the plugin.jar 
+		** commits the plugin.jar
 		-->
 	<target name="commit-dist">
 		<echo>
 	***** Properties of published ${plugin.jar} *****
-	Commit message    : '${commit.message}'					
+	Commit message    : '${commit.message}'
 	Plugin-Mainversion: ${plugin.main.version}
 	JOSM build version: ${coreversion.info.entry.revision}
 	Plugin-Version    : ${version.entry.commit.revision}
-	***** / Properties of published ${plugin.jar} *****					
-						
+	***** / Properties of published ${plugin.jar} *****
+
 	Now commiting ${plugin.jar} ...
 	</echo>
Index: applications/editors/josm/plugins/livegps/src/livegps/AppendableGpxTrackSegment.java
===================================================================
--- applications/editors/josm/plugins/livegps/src/livegps/AppendableGpxTrackSegment.java	(revision 20264)
+++ applications/editors/josm/plugins/livegps/src/livegps/AppendableGpxTrackSegment.java	(revision 20431)
@@ -55,3 +55,8 @@
 	}
 
+	@Override
+	public int getUpdateCount() {
+		return size;
+	}
+
 }
Index: applications/editors/josm/plugins/livegps/src/livegps/LiveGpsAcquirer.java
===================================================================
--- applications/editors/josm/plugins/livegps/src/livegps/LiveGpsAcquirer.java	(revision 20264)
+++ applications/editors/josm/plugins/livegps/src/livegps/LiveGpsAcquirer.java	(revision 20431)
@@ -28,5 +28,5 @@
 
 	/**
-	 * Constructor, initializes the configurable settings. 
+	 * Constructor, initializes the configurable settings.
 	 */
 	public LiveGpsAcquirer() {
@@ -204,4 +204,5 @@
 								haveFix = true;
 							}
+							break;
 						default:
 							// not interested
Index: applications/editors/josm/plugins/livegps/src/livegps/LiveGpsLayer.java
===================================================================
--- applications/editors/josm/plugins/livegps/src/livegps/LiveGpsLayer.java	(revision 20264)
+++ applications/editors/josm/plugins/livegps/src/livegps/LiveGpsLayer.java	(revision 20431)
@@ -30,5 +30,4 @@
 	float speed;
 	float course;
-	String status;
 	// JLabel lbl;
 	boolean autocenter;
Index: applications/editors/josm/plugins/livegps/src/livegps/LiveGpsPlugin.java
===================================================================
--- applications/editors/josm/plugins/livegps/src/livegps/LiveGpsPlugin.java	(revision 20264)
+++ applications/editors/josm/plugins/livegps/src/livegps/LiveGpsPlugin.java	(revision 20431)
@@ -32,5 +32,4 @@
 	private JMenu lgpsmenu;
 	private JCheckBoxMenuItem lgpscapture;
-	private JMenuItem lgpscenter;
 	private JCheckBoxMenuItem lgpsautocenter;
 	private LiveGpsDialog lgpsdialog;
Index: applications/editors/josm/plugins/livegps/src/livegps/SingleSegmentGpxTrack.java
===================================================================
--- applications/editors/josm/plugins/livegps/src/livegps/SingleSegmentGpxTrack.java	(revision 20264)
+++ applications/editors/josm/plugins/livegps/src/livegps/SingleSegmentGpxTrack.java	(revision 20431)
@@ -36,3 +36,8 @@
 	}
 
+	@Override
+	public int getUpdateCount() {
+		return trackSegment.getUpdateCount();
+	}
+
 }
