Ignore:
Timestamp:
2010-08-13T22:00:38+02:00 (14 years ago)
Author:
bastiK
Message:

added purge action (some testing would be welcome)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/MainApplication.java

    r3417 r3431  
    256256            dialog.setContent(tr("JOSM found {0} unsaved osm data layers. It looks like JOSM crashed last time. Do you want to restore data?",
    257257                    unsavedLayers.size()));
     258            dialog.setIcon(JOptionPane.INFORMATION_MESSAGE);
    258259            dialog.setButtonIcons(new String[] {"ok.png", "cancel.png"});
    259260            dialog.showDialog();
     
    299300        String version = System.getProperty("java.version");
    300301        if (version != null) {
    301             if (version.startsWith("1.6") || version.startsWith("6"))
     302            if (version.startsWith("1.6") || version.startsWith("6") ||
     303                    version.startsWith("1.7") || version.startsWith("7"))
    302304                return;
    303305            if (version.startsWith("1.5") || version.startsWith("5")) {
Note: See TracChangeset for help on using the changeset viewer.