Changeset 7771 in josm


Ignore:
Timestamp:
2014-12-08T20:42:52+01:00 (9 years ago)
Author:
bastiK
Message:

fixes #1608 - remove remaining old logos

Location:
trunk
Files:
1 added
1 deleted
11 edited

Legend:

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

    r6901 r7771  
    4343     */
    4444    public AboutAction() {
    45         super(tr("About"), "about", tr("Display the about screen."),
     45        super(tr("About"), "logo", tr("Display the about screen."),
    4646            Shortcut.registerShortcut("system:about", tr("About"),
    4747            KeyEvent.VK_F1, Shortcut.SHIFT), true);
  • trunk/src/org/openstreetmap/josm/actions/AbstractInfoAction.java

    r7678 r7771  
    1010import java.util.Iterator;
    1111import java.util.List;
    12 import java.util.regex.Pattern;
    1312
    1413import javax.swing.JOptionPane;
     
    1918import org.openstreetmap.josm.gui.HelpAwareOptionPane.ButtonSpec;
    2019import org.openstreetmap.josm.gui.help.HelpUtil;
    21 import org.openstreetmap.josm.io.OsmApi;
    2220import org.openstreetmap.josm.tools.ImageProvider;
    2321import org.openstreetmap.josm.tools.OpenBrowser;
  • trunk/src/org/openstreetmap/josm/actions/HistoryInfoAction.java

    r7434 r7771  
    2525     */
    2626    public HistoryInfoAction() {
    27         super(tr("History"), "about",
     27        super(tr("History"), "dialogs/history",
    2828                tr("Display history information about OSM ways, nodes, or relations."),
    2929                Shortcut.registerShortcut("core:historyinfo",
  • trunk/src/org/openstreetmap/josm/actions/HistoryInfoWebAction.java

    r7678 r7771  
    1515
    1616    public HistoryInfoWebAction() {
    17         super(tr("History (web)"), "about",
     17        super(tr("History (web)"), "dialogs/history",
    1818                tr("Display history information about OSM ways, nodes, or relations in web browser."),
    1919                Shortcut.registerShortcut("core:historyinfoweb",
  • trunk/src/org/openstreetmap/josm/actions/InfoAction.java

    r6336 r7771  
    2121     */
    2222    public InfoAction() {
    23         super(tr("Advanced info"), "about",
     23        super(tr("Advanced info"), "info",
    2424            tr("Display advanced object information about OSM nodes, ways, or relations."),
    2525            Shortcut.registerShortcut("core:info",
  • trunk/src/org/openstreetmap/josm/actions/InfoWebAction.java

    r7678 r7771  
    1515
    1616    public InfoWebAction() {
    17         super(tr("Advanced info (web)"), "about",
     17        super(tr("Advanced info (web)"), "info",
    1818                tr("Display object information about OSM nodes, ways, or relations in web browser."),
    1919                Shortcut.registerShortcut("core:infoweb",
  • trunk/src/org/openstreetmap/josm/gui/dialogs/ChangesetDialog.java

    r7678 r7771  
    423423            putValue(NAME, tr("Show info"));
    424424            putValue(SHORT_DESCRIPTION, tr("Open a web page for each selected changeset"));
    425             putValue(SMALL_ICON, ImageProvider.get("about"));
     425            putValue(SMALL_ICON, ImageProvider.get("help/internet"));
    426426            updateEnabledState();
    427427        }
  • trunk/src/org/openstreetmap/josm/gui/dialogs/UserListDialog.java

    r7678 r7771  
    193193            putValue(NAME, tr("Show info"));
    194194            putValue(SHORT_DESCRIPTION, tr("Launches a browser with information about the user"));
    195             putValue(SMALL_ICON, ImageProvider.get("about"));
     195            putValue(SMALL_ICON, ImageProvider.get("help/internet"));
    196196            updateEnabledState();
    197197        }
  • trunk/src/org/openstreetmap/josm/gui/history/VersionTable.java

    r7678 r7771  
    150150            putValue(NAME, tr("Changeset info"));
    151151            putValue(SHORT_DESCRIPTION, tr("Launch browser with information about the changeset"));
    152             putValue(SMALL_ICON, ImageProvider.get("about"));
     152            putValue(SMALL_ICON, ImageProvider.get("data/changeset"));
    153153        }
    154154
     
    180180            putValue(NAME, tr("User info"));
    181181            putValue(SHORT_DESCRIPTION, tr("Launch browser with information about the user"));
    182             putValue(SMALL_ICON, ImageProvider.get("about"));
     182            putValue(SMALL_ICON, ImageProvider.get("data/user"));
    183183        }
    184184
  • trunk/src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorizationUI.java

    r6890 r7771  
    387387        public TestAccessTokenAction() {
    388388            putValue(NAME, tr("Test Access Token"));
    389             putValue(SMALL_ICON, ImageProvider.get("about"));
     389            putValue(SMALL_ICON, ImageProvider.get("logo"));
    390390        }
    391391
Note: See TracChangeset for help on using the changeset viewer.