Ignore:
Timestamp:
2010-08-15T00:34:57+02:00 (14 years ago)
Author:
stoecker
Message:

fix some charset errors

File:
1 edited

Legend:

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

    r3406 r3438  
    628628    }
    629629    public void setAngle(double a) {
    630         angleText.setText(a < 0 ? "--" : Math.round(a*10)/10.0 + " °");
     630        angleText.setText(a < 0 ? "--" : Math.round(a*10)/10.0 + " \u00B0");
    631631    }
    632632    public void setHeading(double h) {
    633         headingText.setText(h < 0 ? "--" : Math.round(h*10)/10.0 + " °");
     633        headingText.setText(h < 0 ? "--" : Math.round(h*10)/10.0 + " \u00B0");
    634634    }
    635635    public void setDist(double dist) {
Note: See TracChangeset for help on using the changeset viewer.