Ignore:
Timestamp:
2007-07-24T11:23:01+02:00 (17 years ago)
Author:
imi
Message:
  • added "download to new layer" option
  • added missing color preferences when opening preferences dialog
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/gui/layer/RawGpsLayer.java

    r290 r295  
    103103         */
    104104        public final Collection<Collection<GpsPoint>> data;
    105 
    106         public RawGpsLayer(Collection<Collection<GpsPoint>> data, String name, File associatedFile) {
     105        public final boolean fromServer;
     106
     107        public RawGpsLayer(boolean fromServer, Collection<Collection<GpsPoint>> data, String name, File associatedFile) {
    107108                super(name);
     109                this.fromServer = fromServer;
    108110                this.associatedFile = associatedFile;
    109111                this.data = data;
Note: See TracChangeset for help on using the changeset viewer.