Changeset 4805 in josm


Ignore:
Timestamp:
Jan 16, 2012 9:44:24 PM (17 months ago)
Author:
stoecker
Message:

fix typo

File:
1 edited

Legend:

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

    r4803 r4805  
    720720        mouseOnExistingWays = new HashSet<Way>(); 
    721721 
    722         showStausInfo(-1, -1, -1); 
     722        showStatusInfo(-1, -1, -1); 
    723723 
    724724        if (!ctrl && mousePos != null) { 
     
    765765            LatLon mouseLatLon = mv.getProjection().eastNorth2latlon(currentMouseEastNorth); 
    766766            distance = currentBaseNode.getCoor().greatCircleDistance(mouseLatLon); 
    767             showStausInfo(angle, hdg, distance); 
     767            showStatusInfo(angle, hdg, distance); 
    768768        } // elsewhere status ar was filled by snapHelper 
    769769         
     
    772772    } 
    773773 
    774     private void showStausInfo(double angle, double hdg, double distance) { 
     774    private void showStatusInfo(double angle, double hdg, double distance) { 
    775775        Main.map.statusLine.setAngle(angle); 
    776776        Main.map.statusLine.setHeading(hdg); 
     
    13381338                } 
    13391339                 
    1340                 showStausInfo(angle, hdg, distance); 
     1340                showStatusInfo(angle, hdg, distance); 
    13411341           } else { 
    13421342                noSnapNow(); 
Note: See TracChangeset for help on using the changeset viewer.