Ignore:
Timestamp:
2009-12-05T18:23:03+01:00 (14 years ago)
Author:
jttt
Message:

Encalupse OsmPrimitive.incomplete

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/DefaultNameFormatter.java

    r2563 r2578  
    8888    public String format(Node node) {
    8989        String name = "";
    90         if (node.incomplete) {
     90        if (node.isIncomplete()) {
    9191            name = tr("incomplete");
    9292        } else {
     
    113113    public String format(Way way) {
    114114        String name = "";
    115         if (way.incomplete) {
     115        if (way.isIncomplete()) {
    116116            name = tr("incomplete");
    117117        } else {
     
    151151    public String format(Relation relation) {
    152152        String name;
    153         if (relation.incomplete) {
     153        if (relation.isIncomplete()) {
    154154            name = tr("incomplete");
    155155        } else {
Note: See TracChangeset for help on using the changeset viewer.