Changeset 10180 in josm for trunk/src/org
- Timestamp:
- 2016-05-11T03:38:33+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/preferences/server/OAuthAuthenticationPreferencesPanel.java
r10179 r10180 46 46 */ 47 47 public class OAuthAuthenticationPreferencesPanel extends JPanel implements PropertyChangeListener { 48 private final JCheckBox cbShowAdvancedParameters = new JCheckBox(); 49 private final JCheckBox cbSaveToPreferences = new JCheckBox(tr("Save to preferences")); 48 50 private final JPanel pnlAuthorisationMessage = new JPanel(new BorderLayout()); 49 51 private final NotYetAuthorisedPanel pnlNotYetAuthorised = new NotYetAuthorisedPanel(); 52 private final AdvancedOAuthPropertiesPanel pnlAdvancedProperties = new AdvancedOAuthPropertiesPanel(); 50 53 private final AlreadyAuthorisedPanel pnlAlreadyAuthorised = new AlreadyAuthorisedPanel(); 51 private final AdvancedOAuthPropertiesPanel pnlAdvancedProperties = new AdvancedOAuthPropertiesPanel();52 54 private String apiUrl; 53 private final JCheckBox cbShowAdvancedParameters = new JCheckBox();54 private final JCheckBox cbSaveToPreferences = new JCheckBox(tr("Save to preferences"));55 55 56 56 /**
Note:
See TracChangeset
for help on using the changeset viewer.