Ignore:
Timestamp:
2009-09-02T21:17:52+02:00 (15 years ago)
Author:
Gubaer
Message:

new: improved dialog for uploading/saving modified layers on exit
new: improved dialog for uploading/saving modified layers if layers are deleted
new: new progress monitor which can delegate rendering to any Swing component
more setters/getters for properties in OSM data classes (fields are @deprecated); started to update references in the code base

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/command/Command.java

    r1894 r2025  
    8989            e.getKey().cloneFrom(e.getValue());
    9090        }
    91         getLayer().setModified(true);
    9291    }
    9392
     
    114113        if (o != null)
    115114            return o;
    116         Main.debug("unable to find osm with id: " + osm.id + " hashCode: " + osm.hashCode());
     115        Main.debug("unable to find osm with id: " + osm.getId() + " hashCode: " + osm.hashCode());
    117116        for (OsmPrimitive t : cloneMap.keySet()) {
    118117            OsmPrimitive to = cloneMap.get(t);
    119             Main.debug("now: " + t.id + " hashCode: " + t.hashCode());
    120             Main.debug("orig: " + to.id + " hashCode: " + to.hashCode());
     118            Main.debug("now: " + t.getId() + " hashCode: " + t.hashCode());
     119            Main.debug("orig: " + to.getId() + " hashCode: " + to.hashCode());
    121120        }
    122121        return o;
Note: See TracChangeset for help on using the changeset viewer.