Ignore:
Timestamp:
2009-10-03T16:57:49+02:00 (17 years ago)
Author:
Gubaer
Message:

fixed #3625: "Upload" error (410) while fetching items for relation

Location:
trunk/src/org/openstreetmap/josm/gui
Files:
2 edited

Legend:

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

    r2189 r2240  
    245245    public static void explainGoneForUnknownPrimitive(OsmApiException e) {
    246246        JOptionPane.showMessageDialog(Main.parent, ExceptionUtil.explainGoneForUnknownPrimitive(e),
    247                 tr("Primitive already deleted"), JOptionPane.ERROR_MESSAGE);
     247                tr("Object deleted"), JOptionPane.ERROR_MESSAGE);
    248248
    249249    }
  • trunk/src/org/openstreetmap/josm/gui/dialogs/RelationListDialog.java

    r2194 r2240  
    145145        ArrayList<Relation> relations = new ArrayList<Relation>(ds.relations.size());
    146146        for (Relation r: ds.relations ){
    147             if (r.isDeleted() || r.incomplete) {
     147            if (!r.isUsable() || !r.isVisible()) {
    148148                continue;
    149149            }
     
    492492        }
    493493    }
    494 
    495 
    496494}
Note: See TracChangeset for help on using the changeset viewer.