- Timestamp:
- 2012-07-14T17:32:32+02:00 (13 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/history
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/history/HistoryBrowserModel.java
r5319 r5340 161 161 if (history.getByVersion(primitive.getVersion()) != null) 162 162 return primitive.isModified(); 163 164 // if latest version from history is higher than a non existing primitive version, 165 // that means this version has been redacted and the primitive cannot be used. 166 if (history.getLatest().getVersion() > primitive.getVersion()) 167 return false; 163 168 164 169 // latest has a higher version than one of the primitives -
trunk/src/org/openstreetmap/josm/gui/history/VersionTableColumnModel.java
r5266 r5340 6 6 import javax.swing.SwingConstants; 7 7 import javax.swing.table.DefaultTableColumnModel; 8 import javax.swing.table.TableCellRenderer;9 8 import javax.swing.table.TableColumn; 10 9 … … 25 24 col.setResizable(false); 26 25 addColumn(col); 27 // column 1 - Re verence26 // column 1 - Reference 28 27 col = new TableColumn(1); 29 28 col.setHeaderValue(tr("A"));
Note:
See TracChangeset
for help on using the changeset viewer.