Changeset 2017 in josm for trunk/src/org/openstreetmap/josm/gui/download/BookmarkSelection.java
- Timestamp:
- 30.08.2009 19:07:24 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/download/BookmarkSelection.java
r1865 r2017 8 8 import java.awt.event.ActionEvent; 9 9 import java.awt.event.ActionListener; 10 import java.awt.event.MouseListener;11 10 import java.awt.event.MouseAdapter; 12 11 import java.awt.event.MouseEvent; 12 import java.awt.event.MouseListener; 13 13 14 14 import javax.swing.DefaultListModel; … … 23 23 import org.openstreetmap.josm.data.Preferences; 24 24 import org.openstreetmap.josm.gui.BookmarkList; 25 import org.openstreetmap.josm.gui.OptionPaneUtil;26 25 import org.openstreetmap.josm.tools.GBC; 27 26 … … 79 78 80 79 if (tempBookmark == null) { 81 OptionPaneUtil.showMessageDialog(80 JOptionPane.showMessageDialog( 82 81 Main.parent, 83 82 tr("Please enter the desired coordinates first."), … … 87 86 return; 88 87 } 89 tempBookmark.name = OptionPaneUtil.showInputDialog(88 tempBookmark.name = JOptionPane.showInputDialog( 90 89 Main.parent,tr("Please enter a name for the location."), 91 90 tr("Name of location"), … … 104 103 Object sel = bookmarks.getSelectedValue(); 105 104 if (sel == null) { 106 OptionPaneUtil.showMessageDialog(105 JOptionPane.showMessageDialog( 107 106 Main.parent, 108 107 tr("Select a bookmark first."),
Note: See TracChangeset
for help on using the changeset viewer.
