Changeset 5113 in josm


Ignore:
Timestamp:
2012-03-21T23:56:30+01:00 (12 years ago)
Author:
simon04
Message:

fix typo, add code comment

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

Legend:

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

    r5061 r5113  
    121121                        content = new MotdContent().updateIfRequiredString();
    122122                    } catch (IOException ex) {
    123                         System.out.println(tr("Warning: failed to read MOTD. Exception was: {1}", ex.toString()));
     123                        System.out.println(tr("Warning: failed to read MOTD. Exception was: {0}", ex.toString()));
    124124                        content = "<html>" + STYLE + "<h1>" + "JOSM - " + tr("Java OpenStreetMap Editor")
    125125                                + "</h1>\n<h2 align=\"center\">(" + tr("Message of the day not available") + ")</h2></html>";
  • trunk/src/org/openstreetmap/josm/gui/download/DownloadDialog.java

    r5097 r5113  
    1212import java.awt.Font;
    1313import java.awt.Graphics;
    14 import java.awt.GridBagConstraints;
    1514import java.awt.GridBagLayout;
    1615import java.awt.event.ActionEvent;
     
    9897        pnl.add(cbDownloadGpxData,  GBC.eol().insets(5,5,1,5));
    9998
     99        // hook for subclasses
    100100        buildMainPanelAboveDownloadSelections(pnl);
    101101
Note: See TracChangeset for help on using the changeset viewer.