Changeset 2017 in josm for trunk/src/org/openstreetmap/josm/gui/conflict/pair/properties/PropertiesMerger.java
- Timestamp:
- 30.08.2009 19:07:24 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/conflict/pair/properties/PropertiesMerger.java
r1989 r2017 20 20 import javax.swing.JOptionPane; 21 21 import javax.swing.JPanel; 22 import javax.swing.SwingUtilities; 23 24 import org.openstreetmap.josm.Main; 22 25 23 import org.openstreetmap.josm.data.coor.LatLon; 26 import org.openstreetmap.josm.data.osm.OsmPrimitiveType;27 import org.openstreetmap.josm.gui.OptionPaneUtil;28 24 import org.openstreetmap.josm.gui.conflict.pair.MergeDecisionType; 29 25 import org.openstreetmap.josm.tools.ImageProvider; … … 583 579 tr("No, abort") 584 580 }; 585 int ret = OptionPaneUtil.showOptionDialog(581 int ret = JOptionPane.showOptionDialog( 586 582 null, 587 583 tr("<html>To keep your local version, JOSM<br>" … … 595 591 JOptionPane.YES_NO_OPTION, 596 592 JOptionPane.QUESTION_MESSAGE, 593 null, 597 594 options, 598 595 options[1] … … 623 620 tr("No, abort") 624 621 }; 625 int ret = OptionPaneUtil.showOptionDialog(622 int ret = JOptionPane.showOptionDialog( 626 623 null, 627 624 tr("<html>JOSM will have to remove your local primitive with id {0}<br>" … … 633 630 JOptionPane.YES_NO_OPTION, 634 631 JOptionPane.QUESTION_MESSAGE, 632 null, 635 633 options, 636 634 options[1]
Note: See TracChangeset
for help on using the changeset viewer.
