Ignore:
Timestamp:
2010-01-15T10:44:16+01:00 (14 years ago)
Author:
Gubaer
Message:

fixed #4375: authorise -> authorize

File:
1 moved

Legend:

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

    r2858 r2861  
    3333import org.openstreetmap.josm.tools.ImageProvider;
    3434
    35 public class ManualAuthorisationUI extends AbstractAuthorisationUI{
     35public class ManualAuthorizationUI extends AbstractAuthorizationUI{
    3636
    3737    private JTextField tfAccessTokenKey;
     
    152152    }
    153153
    154     public ManualAuthorisationUI() {
     154    public ManualAuthorizationUI() {
    155155        build();
    156156    }
     
    237237        public void actionPerformed(ActionEvent evt) {
    238238            TestAccessTokenTask task = new TestAccessTokenTask(
    239                     ManualAuthorisationUI.this,
     239                    ManualAuthorizationUI.this,
    240240                    getApiUrl(),
    241241                    getAdvancedPropertiesPanel().getAdvancedParameters(),
     
    250250
    251251        public void propertyChange(PropertyChangeEvent evt) {
    252             if (! evt.getPropertyName().equals(AbstractAuthorisationUI.ACCESS_TOKEN_PROP))
     252            if (! evt.getPropertyName().equals(AbstractAuthorizationUI.ACCESS_TOKEN_PROP))
    253253                return;
    254254            updateEnabledState();
Note: See TracChangeset for help on using the changeset viewer.