Index: applications/editors/josm/plugins/livegps/build.xml
===================================================================
--- applications/editors/josm/plugins/livegps/build.xml	(revision 16290)
+++ applications/editors/josm/plugins/livegps/build.xml	(revision 16294)
@@ -26,5 +26,5 @@
                 <attribute name="Plugin-Description" value="Support live GPS input (moving dot) through a connection to gpsd server."/>
                 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/LiveGPS"/>
-                <attribute name="Plugin-Mainversion" value="1722"/>
+                <attribute name="Plugin-Mainversion" value="1725"/>
                 <attribute name="Plugin-Stage" value="50"/>
                 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
Index: applications/editors/josm/plugins/livegps/src/livegps/LiveGpsLayer.java
===================================================================
--- applications/editors/josm/plugins/livegps/src/livegps/LiveGpsLayer.java	(revision 16290)
+++ applications/editors/josm/plugins/livegps/src/livegps/LiveGpsLayer.java	(revision 16294)
@@ -74,5 +74,5 @@
     {
         if (lastPoint != null)
-            Main.map.mapView.zoomTo(lastPoint.eastNorth);
+            Main.map.mapView.zoomTo(lastPoint.getCoor());
     }
 
@@ -116,5 +116,5 @@
             if (lastPoint != null)
             {
-                Point screen = mv.getPoint(lastPoint.eastNorth);
+                Point screen = mv.getPoint(lastPoint.getCoor());
                 g.setColor(Main.pref.getColor(KEY_LIVEGPS_COLOR, Color.RED));
                 g.drawOval(screen.x-10, screen.y-10,20,20);
