Changeset 6342 in josm for trunk/src/org


Ignore:
Timestamp:
2013-10-30T01:57:46+01:00 (10 years ago)
Author:
Don-vip
Message:

various fixes

Location:
trunk/src/org/openstreetmap/josm
Files:
4 edited

Legend:

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

    r6336 r6342  
    804804    /**
    805805     * Closes JOSM and optionally terminates the Java Virtual Machine (JVM). If there are some unsaved data layers, asks first for user confirmation.
    806      * @param exit If {@code true}, the JVM is terminated by running {@link System#exit} with a return code of 0.
     806     * @param exit If {@code true}, the JVM is terminated by running {@link System#exit} with a given return code.
     807     * @param exitCode The return code
    807808     * @return {@code true} if JOSM has been closed, {@code false} if the user has cancelled the operation.
    808809     * @since 3378
  • trunk/src/org/openstreetmap/josm/gui/preferences/ServerAccessPreference.java

    r6084 r6342  
    1818import org.openstreetmap.josm.gui.preferences.server.ProxyPreferencesPanel;
    1919import org.openstreetmap.josm.gui.widgets.VerticallyScrollablePanel;
     20
    2021public class ServerAccessPreference extends DefaultTabPreferenceSetting {
    2122
     
    3839    /** panel for configuring proxy preferences */
    3940    private ProxyPreferencesPanel pnlProxyPreferences;
    40     /** panel for backup preferences */
    4141
    4242    /**
  • trunk/src/org/openstreetmap/josm/gui/widgets/UrlLabel.java

    r6340 r6342  
    4141
    4242    public UrlLabel(String url, String description) {
    43         this (url, url, 0);
     43        this (url, description, 0);
    4444    }
    4545
  • trunk/src/org/openstreetmap/josm/io/remotecontrol/RemoteControl.java

    r6070 r6342  
    1414{
    1515    /**
    16      * If the remote cotrol feature is enabled or disabled. If disabled,
     16     * If the remote control feature is enabled or disabled. If disabled,
    1717     * it should not start the server.
    1818     */
     
    4949     * @param handlerClass The additional request handler.
    5050     */
    51     public void addRequestHandler(String command, Class<? extends RequestHandler> handlerClass)
    52     {
     51    public void addRequestHandler(String command, Class<? extends RequestHandler> handlerClass) {
    5352        RequestProcessor.addRequestHandlerClass(command, handlerClass);
    5453    }
Note: See TracChangeset for help on using the changeset viewer.