Changeset 35545 in osm for applications/editors/josm/plugins/imagery-xml-bounds
- Timestamp:
- 2020-09-12T21:50:38+02:00 (4 years ago)
- Location:
- applications/editors/josm/plugins/imagery-xml-bounds
- Files:
-
- 1 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/XmlBoundsLayer.java
r33830 r35545 96 96 @Override 97 97 public Icon getIcon() { 98 return ImageProvider.get(" xml_24.png");98 return ImageProvider.get("imagery_xml_bounds_icon"); 99 99 } 100 100 -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/actions/ComputeBoundsAction.java
r35100 r35545 76 76 putValue(SHORT_DESCRIPTION, tr("Generate Imagery XML bounds for the selection")); 77 77 putValue(NAME, ACTION_NAME); 78 new ImageProvider(" xml_24.png").getResource().attachImageIcon(this, true);78 new ImageProvider("imagery_xml_bounds_icon").getResource().attachImageIcon(this, true); 79 79 setEnabled(false); 80 80 -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/actions/EditEntriesAction.java
r35023 r35545 42 42 putValue(SHORT_DESCRIPTION, tr("edit bounds for selected defaults")); 43 43 putValue(NAME, ACTION_NAME); 44 new ImageProvider(" xml_24.png").getResource().attachImageIcon(this, true);44 new ImageProvider("imagery_xml_bounds_icon").getResource().attachImageIcon(this, true); 45 45 this.defaultModel = defaultModel; 46 46 this.defaultTable = defaultTable;
Note:
See TracChangeset
for help on using the changeset viewer.