Ignore:
Timestamp:
2015-02-13T15:25:19+01:00 (9 years ago)
Author:
bastiK
Message:

fixed #11096 - png -> svg

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/conflict/pair/ListMerger.java

    r7668 r8056  
    623623
    624624        public CopyAllLeft() {
    625             ImageIcon icon = ImageProvider.get("dialogs/conflict", "useallleft.png");
     625            ImageIcon icon = ImageProvider.get("dialogs/conflict", "useallleft");
    626626            putValue(Action.SMALL_ICON, icon);
    627627            putValue(Action.SHORT_DESCRIPTION, tr("Copy all my elements to the target"));
     
    652652
    653653        public CopyAllRight() {
    654             ImageIcon icon = ImageProvider.get("dialogs/conflict", "useallright.png");
     654            ImageIcon icon = ImageProvider.get("dialogs/conflict", "useallright");
    655655            putValue(Action.SMALL_ICON, icon);
    656656            putValue(Action.SHORT_DESCRIPTION, tr("Copy all their elements to the target"));
     
    681681
    682682        public MoveUpMergedAction() {
    683             ImageIcon icon = ImageProvider.get("dialogs/conflict", "moveup.png");
     683            ImageIcon icon = ImageProvider.get("dialogs/conflict", "moveup");
    684684            putValue(Action.SMALL_ICON, icon);
    685685            if (icon == null) {
     
    715715
    716716        public MoveDownMergedAction() {
    717             ImageIcon icon = ImageProvider.get("dialogs/conflict", "movedown.png");
     717            ImageIcon icon = ImageProvider.get("dialogs/conflict", "movedown");
    718718            putValue(Action.SMALL_ICON, icon);
    719719            if (icon == null) {
     
    749749
    750750        public RemoveMergedAction() {
    751             ImageIcon icon = ImageProvider.get("dialogs/conflict", "remove.png");
     751            ImageIcon icon = ImageProvider.get("dialogs/conflict", "remove");
    752752            putValue(Action.SMALL_ICON, icon);
    753753            if (icon == null) {
Note: See TracChangeset for help on using the changeset viewer.