Ignore:
Timestamp:
2009-11-14T17:59:10+01:00 (16 years ago)
Author:
Gubaer
Message:

fixed #3352: History doesn't get invalidated on upload?
fixed #3912: Extend history dialog to contain the currently modified version
new: zoom to node in list of nodes in history dialog (popup menu)
new: load history of node from node list in history dialog (popup menu or double click)
fixed: close all history dialogs when the number of layers drop to 0
fixed: implemented equals() and hashCode() on SimplePrimitiveId
fixed: history features now usePrimitiveId instead of long.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/functional/org/openstreetmap/josm/gui/history/HistoryBrowserTest.java

    r1813 r2448  
    1616import org.openstreetmap.josm.Main;
    1717import org.openstreetmap.josm.data.osm.OsmPrimitiveType;
     18import org.openstreetmap.josm.data.osm.SimplePrimitiveId;
    1819import org.openstreetmap.josm.data.osm.history.History;
    1920import org.openstreetmap.josm.data.osm.history.HistoryDataSet;
     
    7879            return;
    7980        }
    80         History h = ds.getHistory(id);
     81        History h = ds.getHistory(new SimplePrimitiveId(id, type));
    8182        browser.populate(h);
    8283    }
Note: See TracChangeset for help on using the changeset viewer.