Changeset 8509 in josm for trunk/src/org/openstreetmap/josm/gui/widgets
- Timestamp:
- 2015-06-20T14:36:00+02:00 (10 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/widgets
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/widgets/EditableList.java
r8378 r8509 101 101 public void actionPerformed(ActionEvent e) { 102 102 if (sourcesList.getSelectedIndex() == -1) { 103 JOptionPane.showMessageDialog(Main.parent, tr("Please select the row to delete."), tr("Information"), JOptionPane.QUESTION_MESSAGE); 103 JOptionPane.showMessageDialog(Main.parent, tr("Please select the row to delete."), tr("Information"), 104 JOptionPane.QUESTION_MESSAGE); 104 105 } else { 105 106 ((DefaultListModel<String>) sourcesList.getModel()).remove(sourcesList.getSelectedIndex()); -
trunk/src/org/openstreetmap/josm/gui/widgets/JosmTextField.java
r8291 r8509 22 22 * <li>disables the global advanced key press detector when focused</li> 23 23 * <li>implements a workaround to <a href="https://bugs.openjdk.java.net/browse/JDK-6322854">JDK bug 6322854</a></li> 24 * <br>This class must be used everywhere in core and plugins instead of {@code JTextField}. 24 * </ul><br>This class must be used everywhere in core and plugins instead of {@code JTextField}. 25 25 * @since 5886 26 26 */
Note:
See TracChangeset
for help on using the changeset viewer.