Ignore:
Timestamp:
2006-04-27T01:29:55+02:00 (18 years ago)
Author:
imi
Message:
  • added GeoImage feature (showing images on a tracklog)
  • added zoom slider
  • added Escape cancels selection rectangle
  • added "Save password" option to Auth-dialog
  • fixed that redo/undo buttons were not enabled
  • fixed hotkeys beeing inaccessible when no data is loaded
File:
1 edited

Legend:

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

    r98 r99  
    2727import org.openstreetmap.josm.Main;
    2828import org.openstreetmap.josm.gui.layer.Layer;
    29 import org.openstreetmap.josm.gui.layer.RawGpsDataLayer;
     29import org.openstreetmap.josm.gui.layer.RawGpsLayer;
    3030import org.openstreetmap.josm.io.GpxWriter;
    3131import org.openstreetmap.josm.tools.GBC;
     
    118118                                        authorName.getText(), email.getText(), copyright.getText(),
    119119                                        copyrightYear.getText(), keywords.getText());
    120                         if (layer instanceof RawGpsDataLayer)
    121                                 w.output(((RawGpsDataLayer)layer).data);
     120                        if (layer instanceof RawGpsLayer)
     121                                w.output(((RawGpsLayer)layer).data);
    122122                        else
    123123                                w.output(Main.ds);
Note: See TracChangeset for help on using the changeset viewer.