Index: applications/editors/josm/plugins/editgpx/build.xml
===================================================================
--- applications/editors/josm/plugins/editgpx/build.xml	(revision 18595)
+++ applications/editors/josm/plugins/editgpx/build.xml	(revision 18962)
@@ -26,5 +26,5 @@
                 <attribute name="Plugin-Description" value="Allows the user to anonymize timestamps and delete parts of huge GPX tracks very fast." />
                 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/EditGpx" />
-                <attribute name="Plugin-Mainversion" value="2450" />
+                <attribute name="Plugin-Mainversion" value="2578" />
                 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
             </manifest>
Index: applications/editors/josm/plugins/editgpx/src/org/openstreetmap/josm/plugins/editgpx/EditGpxLayer.java
===================================================================
--- applications/editors/josm/plugins/editgpx/src/org/openstreetmap/josm/plugins/editgpx/EditGpxLayer.java	(revision 18595)
+++ applications/editors/josm/plugins/editgpx/src/org/openstreetmap/josm/plugins/editgpx/EditGpxLayer.java	(revision 18962)
@@ -144,5 +144,5 @@
         //add all ways
         for (Way w : dataSet.getWays()) {
-            if (w.incomplete || w.isDeleted()) continue;
+            if (w.isIncomplete() || w.isDeleted()) continue;
             GpxTrack trk = new GpxTrack();
             gpxData.tracks.add(trk);
@@ -153,5 +153,5 @@
             ArrayList<WayPoint> trkseg = null;
             for (Node n : w.getNodes()) {
-                if (n.incomplete || n.isDeleted()) {
+                if (n.isIncomplete() || n.isDeleted()) {
                     trkseg = null;
                     continue;
@@ -180,5 +180,5 @@
         // add nodes as waypoints
         for (Node n : dataSet.getNodes()) {
-            if (n.incomplete || n.isDeleted() || doneNodes.contains(n)) continue;
+            if (n.isIncomplete() || n.isDeleted() || doneNodes.contains(n)) continue;
 
             Date tstamp = n.getTimestamp();
