Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/28/19 17:18:28 (6 years ago)
Author:
mkommend
Message:

#2521: Corrected compilation errors in some projects.

Location:
branches/2521_ProblemRefactoring/HeuristicLab.Analysis/3.3/DataVisualization
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Analysis/3.3/DataVisualization/DataRowVisualProperties.cs

    r16723 r16724  
    227227    internal DataRowHistogramAggregation? Aggregation { get; private set; }
    228228
    229     [Storable(Name = "Bins", AllowOneWay = true)]
     229    [Storable(Name = "Bins")]
    230230    private int StorableBins { set { Bins = value; } }
    231     [Storable(Name = "ExactBins", AllowOneWay = true)]
     231    [Storable(Name = "ExactBins")]
    232232    private bool StorableExactBins { set { ExactBins = value; } }
    233     [Storable(Name = "Aggregation", AllowOneWay = true)]
     233    [Storable(Name = "Aggregation")]
    234234    private DataRowHistogramAggregation StorableAggregation { set { Aggregation = value; } }
    235235    #endregion
  • branches/2521_ProblemRefactoring/HeuristicLab.Analysis/3.3/DataVisualization/IndexedDataRow.cs

    r16723 r16724  
    6161    #region Backwards compatible code, remove with 3.4
    6262    // tuples are stored inefficiently
    63     [Storable(Name = "values", AllowOneWay = true)]
     63    [Storable(Name = "values")]
    6464    private IEnumerable<Tuple<T, double>> StorableValues {
    6565      set { values = new ObservableList<Tuple<T, double>>(value); }
  • branches/2521_ProblemRefactoring/HeuristicLab.Analysis/3.3/DataVisualization/ScatterPlot.cs

    r16723 r16724  
    107107    #region Backwards compatible code, remove with 3.4
    108108    private ObservableList<PointF> points;
    109     [Storable(Name = "points", AllowOneWay = true)]
     109    [Storable(Name = "points")]
    110110    private ObservableList<PointF> StorablePoints {
    111111      set { points = value; }
    112112    }
    113113    private string xAxisName;
    114     [Storable(Name = "xAxisName", AllowOneWay = true)]
     114    [Storable(Name = "xAxisName")]
    115115    private string StorableXAxisName {
    116116      set { xAxisName = value; }
    117117    }
    118118    private string yAxisName;
    119     [Storable(Name = "yAxisName", AllowOneWay = true)]
     119    [Storable(Name = "yAxisName")]
    120120    private string StorableYAxisName {
    121121      set { yAxisName = value; }
Note: See TracChangeset for help on using the changeset viewer.