Ignore:
Timestamp:
2009-09-06T23:07:33+02:00 (15 years ago)
Author:
Gubaer
Message:

new: rewrite of CombineWay action
new: conflict resolution dialog for CombineWay, including conflicts for different relation memberships
cleanup: cleanup in OsmReader, reduces memory footprint and reduces parsing time
cleanup: made most of the public fields in OsmPrimitive @deprecated, added accessors and changed the code
cleanup: replaced usages of @deprecated constructors for ExtendedDialog
fixed #3208: Combine ways brokes relation order

WARNING: this changeset touches a lot of code all over the code base. "latest" might become slightly unstable in the next days. Also experience incompatibility issues with plugins in the next few days.

File:
1 edited

Legend:

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

    r2017 r2070  
    6767        String msg = "";
    6868        switch(OsmPrimitiveType.from(conflict.getMy())) {
    69         case NODE: msg = marktr("Resolve {0} tag conflicts in node {1}"); break;
    70         case WAY: msg = marktr("Resolve {0} tag conflicts in way {1}"); break;
    71         case RELATION: msg = marktr("Resolve {0} tag conflicts in relation {1}"); break;
     69            case NODE: msg = marktr("Resolve {0} tag conflicts in node {1}"); break;
     70            case WAY: msg = marktr("Resolve {0} tag conflicts in way {1}"); break;
     71            case RELATION: msg = marktr("Resolve {0} tag conflicts in relation {1}"); break;
    7272        }
    7373        return new DefaultMutableTreeNode(
    7474                new JLabel(
    75                         tr(msg,getNumDecidedConflicts(), conflict.getMy().id),
     75                        tr(msg,getNumDecidedConflicts(), conflict.getMy().getId()),
    7676                        ImageProvider.get("data", "object"),
    7777                        JLabel.HORIZONTAL
Note: See TracChangeset for help on using the changeset viewer.