- Timestamp:
- 2015-09-29T18:32:29+02:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/actions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/SaveActionBase.java
r8510 r8802 37 37 boolean saved = doSave(); 38 38 if (saved) { 39 addToFileOpenHistory( );39 addToFileOpenHistory(file); 40 40 } 41 41 } … … 199 199 } 200 200 201 protected void addToFileOpenHistory() {202 String filepath;201 static void addToFileOpenHistory(File file) { 202 final String filepath; 203 203 try { 204 204 filepath = file.getCanonicalPath(); -
trunk/src/org/openstreetmap/josm/actions/SessionSaveAsAction.java
r8801 r8802 136 136 try { 137 137 sw.write(file); 138 SaveActionBase.addToFileOpenHistory(file); 138 139 } catch (IOException ex) { 139 140 Main.error(ex);
Note:
See TracChangeset
for help on using the changeset viewer.