Ignore:
Timestamp:
30.08.2009 19:07:24 (3 years ago)
Author:
Gubaer
Message:

removed OptionPaneUtil
cleanup of deprecated Layer API
cleanup of deprecated APIs in OsmPrimitive and Way
cleanup of imports

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/conflict/pair/properties/PropertiesMerger.java

    r1989 r2017  
    2020import javax.swing.JOptionPane; 
    2121import javax.swing.JPanel; 
    22 import javax.swing.SwingUtilities; 
    23  
    24 import org.openstreetmap.josm.Main; 
     22 
    2523import org.openstreetmap.josm.data.coor.LatLon; 
    26 import org.openstreetmap.josm.data.osm.OsmPrimitiveType; 
    27 import org.openstreetmap.josm.gui.OptionPaneUtil; 
    2824import org.openstreetmap.josm.gui.conflict.pair.MergeDecisionType; 
    2925import org.openstreetmap.josm.tools.ImageProvider; 
     
    583579                    tr("No, abort") 
    584580            }; 
    585             int ret = OptionPaneUtil.showOptionDialog( 
     581            int ret = JOptionPane.showOptionDialog( 
    586582                    null, 
    587583                    tr("<html>To keep your local version, JOSM<br>" 
     
    595591                    JOptionPane.YES_NO_OPTION, 
    596592                    JOptionPane.QUESTION_MESSAGE, 
     593                    null, 
    597594                    options, 
    598595                    options[1] 
     
    623620                    tr("No, abort") 
    624621            }; 
    625             int ret = OptionPaneUtil.showOptionDialog( 
     622            int ret = JOptionPane.showOptionDialog( 
    626623                    null, 
    627624                    tr("<html>JOSM will have to remove your local primitive with id {0}<br>" 
     
    633630                    JOptionPane.YES_NO_OPTION, 
    634631                    JOptionPane.QUESTION_MESSAGE, 
     632                    null, 
    635633                    options, 
    636634                    options[1] 
Note: See TracChangeset for help on using the changeset viewer.