Changeset 10494 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2016-06-25T16:12:48+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/SingleChangesetDownloadPanel.java
r10438 r10494 11 11 import javax.swing.AbstractAction; 12 12 import javax.swing.BorderFactory; 13 import javax.swing.JButton; 13 14 import javax.swing.JLabel; 14 15 import javax.swing.JPanel; … … 18 19 import org.openstreetmap.josm.Main; 19 20 import org.openstreetmap.josm.actions.downloadtasks.ChangesetContentDownloadTask; 20 import org.openstreetmap.josm.gui.SideButton;21 21 import org.openstreetmap.josm.gui.widgets.ChangesetIdTextField; 22 22 import org.openstreetmap.josm.gui.widgets.SelectAllOnFocusGainedDecorator; … … 55 55 56 56 DownloadAction actDownload = new DownloadAction(); 57 SideButton btn = new SideButton(actDownload);57 JButton btn = new JButton(actDownload); 58 58 tfChangesetId.addActionListener(actDownload); 59 59 tfChangesetId.getDocument().addDocumentListener(actDownload);
Note:
See TracChangeset
for help on using the changeset viewer.