Changeset 5886 in josm for trunk/src/org/openstreetmap/josm/gui/oauth/AccessTokenInfoPanel.java
- Timestamp:
- 2013-04-19T22:21:57+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/oauth/AccessTokenInfoPanel.java
r3530 r5886 11 11 import javax.swing.JLabel; 12 12 import javax.swing.JPanel; 13 import javax.swing.JTextField;14 13 15 14 import org.openstreetmap.josm.data.oauth.OAuthToken; 16 15 import org.openstreetmap.josm.gui.preferences.server.OAuthAccessTokenHolder; 16 import org.openstreetmap.josm.gui.widgets.JosmTextField; 17 17 18 18 /** … … 22 22 public class AccessTokenInfoPanel extends JPanel { 23 23 24 private J TextField tfAccessTokenKey;25 private J TextField tfAccessTokenSecret;24 private JosmTextField tfAccessTokenKey; 25 private JosmTextField tfAccessTokenSecret; 26 26 private JCheckBox cbSaveAccessTokenInPreferences; 27 27 … … 39 39 gc.gridx = 1; 40 40 gc.weightx = 1.0; 41 add(tfAccessTokenKey = new J TextField(), gc);41 add(tfAccessTokenKey = new JosmTextField(), gc); 42 42 tfAccessTokenKey.setEditable(false); 43 43 … … 51 51 gc.gridx = 1; 52 52 gc.weightx = 1.0; 53 add(tfAccessTokenSecret = new J TextField(), gc);53 add(tfAccessTokenSecret = new JosmTextField(), gc); 54 54 tfAccessTokenSecret.setEditable(false); 55 55
Note:
See TracChangeset
for help on using the changeset viewer.