Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/07/13 12:13:29 (11 years ago)
Author:
mkommend
Message:

#1632: Corrected persisting the SavitzkyGolay filter in the data importer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/FilterSavitzkyGolayCommand.cs

    r7267 r9597  
    2323using System.Collections.Generic;
    2424using System.Linq;
    25 using System.Text;
    26 using System.Xml;
     25using HeuristicLab.DataImporter.Command.View;
    2726using HeuristicLab.DataImporter.Data;
    2827using HeuristicLab.DataImporter.Data.CommandBase;
    2928using HeuristicLab.DataImporter.Data.Model;
    30 using HeuristicLab.DataImporter.Command.View;
    3129using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3230
     
    3937    private ICollection<int> oldSortedColumnIndices;
    4038
     39    [Storable]
    4140    public int WindowLeft { get; set; }
    42 
     41    [Storable]
    4342    public int WindowRight { get; set; }
    44 
     43    [Storable]
    4544    public int Order { get; set; }
    46 
     45    [Storable]
    4746    public int OrderOfDerivative { get; set; }
    4847
Note: See TracChangeset for help on using the changeset viewer.