- Timestamp:
- 03/12/14 13:41:54 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/LineChartContent.cs
r10539 r10573 51 51 return new LineChartContent(this, cloner); 52 52 } 53 54 public event DataPreprocessingChangedEventHandler Changed { 55 add { lineChartLogic.Changed += value; } 56 remove { lineChartLogic.Changed -= value; } 57 } 53 58 } 54 59 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/LineChartLogic.cs
r10552 r10573 103 103 } 104 104 } 105 106 public event DataPreprocessingChangedEventHandler Changed { 107 add { preprocessingData.Changed += value; } 108 remove { preprocessingData.Changed -= value; } 109 } 105 110 } 106 111 }
Note: See TracChangeset
for help on using the changeset viewer.