- Timestamp:
- 2015-12-25T21:13:14+01:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/SessionSaveAsAction.java
r9062 r9152 59 59 */ 60 60 public SessionSaveAsAction() { 61 super(tr("Save Session As..."), "session", tr("Save the current session to a new file."), null, true, "save_as-session", true); 61 this(true, true); 62 } 63 64 /** 65 * Constructs a new {@code SessionSaveAsAction}. 66 * @param toolbar Register this action for the toolbar preferences? 67 * @param installAdapters False, if you don't want to install layer changed and selection changed adapters 68 */ 69 protected SessionSaveAsAction(boolean toolbar, boolean installAdapters) { 70 super(tr("Save Session As..."), "session", tr("Save the current session to a new file."), null, toolbar, "save_as-session", installAdapters); 62 71 putValue("help", ht("/Action/SessionSaveAs")); 63 72 } -
trunk/src/org/openstreetmap/josm/gui/io/SaveLayersDialog.java
r8919 r9152 370 370 371 371 class SaveSessionAction extends SessionSaveAsAction { 372 373 public SaveSessionAction() { 374 super(false, false); 375 } 376 372 377 @Override 373 378 public void actionPerformed(ActionEvent e) {
Note:
See TracChangeset
for help on using the changeset viewer.