Changeset 4911 in josm for trunk/src/org/openstreetmap


Ignore:
Timestamp:
2012-02-09T13:56:01+01:00 (12 years ago)
Author:
framm
Message:

change name from override to overwrite.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/SaveActionBase.java

    r4463 r4911  
    215215            file = new File(fn);
    216216        }
    217         if (!confirmOverride(file))
     217        if (!confirmOverwrite(file))
    218218            return null;
    219219        return file;
    220220    }
    221221
    222     public static boolean confirmOverride(File file) {
     222    public static boolean confirmOverwrite(File file) {
    223223        if (file == null || (file.exists())) {
    224224            ExtendedDialog dialog = new ExtendedDialog(
Note: See TracChangeset for help on using the changeset viewer.