Changeset 29959 in osm for applications/editors/josm/plugins/ElevationProfile
- Timestamp:
- 2013-09-24T23:04:02+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gui/ElevationProfileDialog.java
r29958 r29959 32 32 import javax.swing.JLabel; 33 33 import javax.swing.JPanel; 34 import javax.swing.event.ListDataEvent;35 34 import javax.swing.event.ListDataListener; 36 35 … … 75 74 private JLabel totalTimeLabel; 76 75 private JLabel distLabel; 77 private JComboBox <IElevationProfile>trackCombo;76 private JComboBox trackCombo; 78 77 79 78 /* Listener to the elevation model */ … … 167 166 trackPanel.add(lbTrack); 168 167 169 trackCombo = new JComboBox <IElevationProfile>(new TrackModel());168 trackCombo = new JComboBox(new TrackModel()); 170 169 trackPanel.add(trackCombo); 171 170 … … 421 420 422 421 423 class TrackModel implements ComboBoxModel <IElevationProfile>{422 class TrackModel implements ComboBoxModel { 424 423 private Collection<ListDataListener> listeners; 425 424
Note:
See TracChangeset
for help on using the changeset viewer.