Changeset 30532 in osm for applications/editors/josm/plugins/pdfimport/src
- Timestamp:
- 2014-07-14T04:18:06+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pdfimport/src/pdfimport/LoadPdfDialog.java
r29803 r30532 120 120 * Combobox with all projections available 121 121 */ 122 private JComboBox projectionCombo; 122 private JComboBox<ProjectionChoice> projectionCombo; 123 123 private JButton projectionPreferencesButton; 124 124 private JTextField minXField; … … 247 247 c.gridheight = 1;c.gridwidth = 1;c.weightx =1; c.weighty = 1; c.fill = GridBagConstraints.BOTH; 248 248 249 this.projectionCombo = new JComboBox(); 249 this.projectionCombo = new JComboBox<>(); 250 250 for (ProjectionChoice p: ProjectionPreference.getProjectionChoices()) { 251 251 this.projectionCombo.addItem(p);
Note:
See TracChangeset
for help on using the changeset viewer.