Ignore:
Timestamp:
2010-09-15T08:21:16+02:00 (14 years ago)
Author:
stoecker
Message:

fix array preferences

Location:
trunk/src/org/openstreetmap/josm/gui/io
Files:
3 edited

Legend:

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

    r3399 r3530  
    8484    /**
    8585     * Creates the panel
    86      * 
     86     *
    8787     * @param changesetCommentModel the model for the changeset comment. Must not be null
    8888     * @throws IllegalArgumentException thrown if {@code changesetCommentModel} is null
  • trunk/src/org/openstreetmap/josm/gui/io/ChangesetManagementPanel.java

    r3133 r3530  
    163163    /**
    164164     * Creates a new panel
    165      * 
     165     *
    166166     * @param changesetCommentModel the changeset comment model. Must not be null.
    167167     * @throws IllegalArgumentException thrown if {@code changesetCommentModel} is null
     
    186186    /**
    187187     * Sets the changeset to be used in the next upload
    188      * 
     188     *
    189189     * @param cs the changeset
    190190     */
  • trunk/src/org/openstreetmap/josm/gui/io/UploadDialog.java

    r3501 r3530  
    364364        /**
    365365         * returns true if the user wants to revisit, false if they
    366          * want to continue 
     366         * want to continue
    367367         */
    368368        protected boolean warnUploadComment() {
     
    370370                tr("Please revise upload comment"),
    371371                new String[] {tr("Revise"), tr("Cancel"), tr("Continue as is")});
    372             dlg.setContent("<html>" + 
    373                     tr("Your upload comment is <i>empty</i>, or <i>very short</i>.<br /><br />" + 
     372            dlg.setContent("<html>" +
     373                    tr("Your upload comment is <i>empty</i>, or <i>very short</i>.<br /><br />" +
    374374                       "This is technically allowed, but please consider that many users who are<br />" +
    375375                       "watching changes in their area depend on meaningful changeset comments<br />" +
    376376                       "to understand what is going on!<br /><br />" +
    377377                       "If you spend a minute now to explain your change, you will make life<br />" +
    378                        "easier for many other mappers.") + 
     378                       "easier for many other mappers.") +
    379379                    "</html>");
    380380            dlg.setButtonIcons(new Icon[] {
     
    382382                ImageProvider.get("cancel"),
    383383                ImageProvider.overlay(
    384                     ImageProvider.get("upload"), 
     384                    ImageProvider.get("upload"),
    385385                    new ImageIcon(ImageProvider.get("warning-small").getImage().getScaledInstance(10 , 10, Image.SCALE_SMOOTH)),
    386386                    ImageProvider.OverlayPosition.SOUTHEAST)});
Note: See TracChangeset for help on using the changeset viewer.