Changeset 2771 in josm for trunk/src/org/openstreetmap


Ignore:
Timestamp:
2010-01-08T09:12:41+01:00 (15 years ago)
Author:
stoecker
Message:

typo

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

Legend:

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

    r2302 r2771  
    7979        PresetTextComparator comp = new PresetTextComparator();
    8080        ArrayList<JMenuItem> sortarray = new ArrayList<JMenuItem>();
    81         int lastSeperator = 0;
     81        int lastSeparator = 0;
    8282        for (int i = 0; i < items.length; i++) {
    8383            Object item = items[i];
     
    9292                    for (JMenuItem menuItem : sortarray) {
    9393                        int oldPos;
    94                         if(lastSeperator == 0){
     94                        if(lastSeparator == 0){
    9595                            oldPos=pos;
    9696                        }else {
    97                             oldPos = pos+lastSeperator+1;
     97                            oldPos = pos+lastSeparator+1;
    9898                        }
    9999                        menu.add(menuItem, oldPos);
     
    101101                    }
    102102                    sortarray = new ArrayList<JMenuItem>();
    103                     lastSeperator = 0;
     103                    lastSeparator = 0;
    104104                }
    105105            }else if (item instanceof JSeparator){
     
    108108                for (JMenuItem menuItem : sortarray) {
    109109                    int oldPos;
    110                     if(lastSeperator == 0){
     110                    if(lastSeparator == 0){
    111111                        oldPos=pos;
    112112                    }else {
    113                         oldPos = pos+lastSeperator+1;
     113                        oldPos = pos+lastSeparator+1;
    114114                    }
    115115                    menu.add(menuItem, oldPos);
     
    117117                }
    118118                sortarray = new ArrayList<JMenuItem>();
    119                 lastSeperator = i;
     119                lastSeparator = i;
    120120            }
    121121        }
  • trunk/src/org/openstreetmap/josm/io/MultiFetchServerObjectReader.java

    r2609 r2771  
    5151    /**
    5252     * the max. number of primitives retrieved in one step. Assuming IDs with 7 digits,
    53      * this leads to a max. request URL of ~  1600 Bytes ((7 digits +  1 Seperator) * 200),
     53     * this leads to a max. request URL of ~ 1600 Bytes ((7 digits +  1 Separator) * 200),
    5454     * which should be safe according to the
    5555     * <a href="http://www.boutell.com/newfaq/misc/urllength.html">WWW FAQ</a>.
Note: See TracChangeset for help on using the changeset viewer.