Ignore:
Timestamp:
2005-10-04T20:36:42+02:00 (21 years ago)
Author:
imi
Message:

changed direct resource access to Class.getResource()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/actions/PreferencesAction.java

    r1 r11  
    77import javax.swing.ImageIcon;
    88
     9import org.openstreetmap.josm.gui.Main;
    910import org.openstreetmap.josm.gui.PreferenceDialog;
    1011
     
    2021         */
    2122        public PreferencesAction() {
    22                 super("Preferences", new ImageIcon("images/preference.png"));
     23                super("Preferences", new ImageIcon(Main.class.getResource("/images/preference.png")));
    2324                putValue(MNEMONIC_KEY, KeyEvent.VK_P);
    2425        }
Note: See TracChangeset for help on using the changeset viewer.