Changeset 29963 in osm for applications/editors/josm/plugins
- Timestamp:
- 2013-09-26T00:09:27+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
r29961 r29963 78 78 private JLabel totalTimeLabel; 79 79 private JLabel distLabel; 80 private JComboBox <IElevationProfile>trackCombo;80 private JComboBox trackCombo; 81 81 private JButton zoomButton; 82 82 … … 185 185 zoomButton.setEnabled(false); 186 186 187 trackCombo = new JComboBox <IElevationProfile>(new TrackModel());187 trackCombo = new JComboBox(new TrackModel()); 188 188 trackCombo.setPreferredSize(new Dimension(200, 24)); // HACK! 189 189 trackCombo.setEnabled(false); // we have no model on startup … … 452 452 453 453 454 class TrackModel implements ComboBoxModel <IElevationProfile>{454 class TrackModel implements ComboBoxModel { 455 455 private Collection<ListDataListener> listeners; 456 456
Note:
See TracChangeset
for help on using the changeset viewer.