Changeset 5605 in josm for trunk/src


Ignore:
Timestamp:
2012-11-28T22:08:53+01:00 (11 years ago)
Author:
Don-vip
Message:

fix #8234 - Icon image twice in source

Location:
trunk/src/org/openstreetmap/josm/gui
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/MainApplication.java

    r5538 r5605  
    386386                                        "JOSM found {0} unsaved osm data layers. ", unsavedLayerFiles.size(), unsavedLayerFiles.size()) +
    387387                                        tr("It looks like JOSM crashed last time. Would you like to restore the data?"));
    388                         dialog.setButtonIcons(new String[] {"ok", "cancel", "dialogs/remove"});
     388                        dialog.setButtonIcons(new String[] {"ok", "cancel", "dialogs/delete"});
    389389                        int selection = dialog.showDialog().getValue();
    390390                        if (selection == 1) {
  • trunk/src/org/openstreetmap/josm/gui/dialogs/relation/GenericRelationEditor.java

    r5450 r5605  
    10861086        public RemoveAction() {
    10871087            String tooltip = tr("Remove the currently selected members from this relation");
    1088             putValue(SMALL_ICON, ImageProvider.get("dialogs", "remove"));
     1088            putValue(SMALL_ICON, ImageProvider.get("dialogs", "delete"));
    10891089            putValue(NAME, tr("Remove"));
    10901090            Shortcut sc = Shortcut.registerShortcut("relationeditor:remove", tr("Relation Editor: Remove"),
Note: See TracChangeset for help on using the changeset viewer.