Changeset 10428 in josm for trunk/src/org/openstreetmap/josm/actions/relation
- Timestamp:
- 2016-06-19T18:28:26+02:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/actions/relation
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/relation/DeleteRelationsAction.java
r10413 r10428 24 24 putValue(SHORT_DESCRIPTION, tr("Delete the selected relation")); 25 25 putValue(NAME, tr("Delete")); 26 putValue(SMALL_ICON,ImageProvider.get("dialogs", "delete"));26 new ImageProvider("dialogs", "delete").getResource().attachImageIcon(this, true); 27 27 } 28 28 -
trunk/src/org/openstreetmap/josm/actions/relation/DuplicateRelationAction.java
r10413 r10428 22 22 public DuplicateRelationAction() { 23 23 putValue(SHORT_DESCRIPTION, tr("Create a copy of this relation and open it in another editor window")); 24 putValue(SMALL_ICON,ImageProvider.get("duplicate"));24 new ImageProvider("duplicate").getResource().attachImageIcon(this, true); 25 25 putValue(NAME, tr("Duplicate")); 26 26 } -
trunk/src/org/openstreetmap/josm/actions/relation/EditRelationAction.java
r10413 r10428 32 32 putValue(NAME, tr("Edit")); 33 33 putValue(SHORT_DESCRIPTION, tr("Call relation editor for selected relation")); 34 putValue(SMALL_ICON,ImageProvider.get("dialogs", "edit"));34 new ImageProvider("dialogs", "edit").getResource().attachImageIcon(this, true); 35 35 } 36 36 -
trunk/src/org/openstreetmap/josm/actions/relation/SelectRelationAction.java
r10413 r10428 26 26 putValue(SHORT_DESCRIPTION, add ? tr("Add the selected relations to the current selection") : 27 27 tr("Set the current selection to the list of selected relations")); 28 putValue(SMALL_ICON,ImageProvider.get("dialogs", "select"));28 new ImageProvider("dialogs", "select").getResource().attachImageIcon(this, true); 29 29 putValue(NAME, add ? tr("Select relation (add)") : tr("Select relation")); 30 30 this.add = add;
Note:
See TracChangeset
for help on using the changeset viewer.