Changeset 10021 in josm
- Timestamp:
- 2016-03-19T20:36:31+01:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/history/NodeListTableCellRenderer.java
r9223 r10021 55 55 int row, int column) { 56 56 57 renderNode((TwoColumnDiff.Item) value, isSelected); 57 if (value != null) { 58 renderNode((TwoColumnDiff.Item) value, isSelected); 59 } 58 60 return this; 59 61 } -
trunk/src/org/openstreetmap/josm/gui/history/RelationMemberListTableCellRenderer.java
r9983 r10021 79 79 int row, int column) { 80 80 81 if (value == null) return this; 81 82 Item member = (TwoColumnDiff.Item) value; 82 83 renderIcon((RelationMemberData) member.value); -
trunk/src/org/openstreetmap/josm/gui/history/VersionTable.java
r9223 r10021 319 319 } 320 320 321 // for unit tests 322 private AlignedRenderer() { 323 this(SwingConstants.LEFT); 324 } 325 321 326 @Override 322 327 public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, -
trunk/src/org/openstreetmap/josm/gui/io/LayerNameAndFilePathTableCell.java
r9754 r10021 85 85 boolean hasFocus, int row, int column) { 86 86 removeAll(); 87 if (value == null) return this; 87 88 SaveLayerInfo info = (SaveLayerInfo) value; 88 89 StringBuilder sb = new StringBuilder(); -
trunk/src/org/openstreetmap/josm/gui/preferences/imagery/CacheContentsPanel.java
r9976 r10021 71 71 private Object editorValue; 72 72 73 private ButtonColumn() { 74 this(null); 75 } 76 73 77 private ButtonColumn(Action action) { 74 78 this.action = action;
Note:
See TracChangeset
for help on using the changeset viewer.