Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/16/19 23:12:05 (5 years ago)
Author:
gkronber
Message:

#2520: removed usages of AllowOneWay

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Analysis/3.3/DataVisualization/ScatterPlot.cs

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