Changeset 2017 in josm for trunk/src/org/openstreetmap/josm/gui/layer/GeoImageLayer.java
- Timestamp:
- 30.08.2009 19:07:24 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/GeoImageLayer.java
r1890 r2017 70 70 import org.openstreetmap.josm.gui.MapFrame; 71 71 import org.openstreetmap.josm.gui.MapView; 72 import org.openstreetmap.josm.gui.OptionPaneUtil;73 72 import org.openstreetmap.josm.gui.PleaseWaitRunnable; 74 73 import org.openstreetmap.josm.gui.dialogs.LayerListDialog; … … 731 730 exifDate = ExifReader.readTime(f); 732 731 } catch (ParseException e) { 733 OptionPaneUtil.showMessageDialog(732 JOptionPane.showMessageDialog( 734 733 Main.parent, 735 734 tr("The date in file \"{0}\" could not be parsed.", f.getName()), … … 740 739 } 741 740 if (exifDate == null) { 742 OptionPaneUtil.showMessageDialog(741 JOptionPane.showMessageDialog( 743 742 Main.parent, 744 743 tr("There is no EXIF time within the file \"{0}\".", f.getName()), … … 763 762 764 763 while (true) { 765 int answer = OptionPaneUtil.showConfirmationDialog(764 int answer = JOptionPane.showConfirmDialog( 766 765 Main.parent, 767 766 p, … … 787 786 return; 788 787 } catch (NumberFormatException x) { 789 OptionPaneUtil.showMessageDialog(788 JOptionPane.showMessageDialog( 790 789 Main.parent, 791 790 tr("Time entered could not be parsed."), … … 794 793 ); 795 794 } catch (ParseException x) { 796 OptionPaneUtil.showMessageDialog(795 JOptionPane.showMessageDialog( 797 796 Main.parent, 798 797 tr("Time entered could not be parsed."),
Note: See TracChangeset
for help on using the changeset viewer.
