Changeset 10967
- Timestamp:
- 06/11/14 10:53:07 (10 years ago)
- Location:
- branches/DataPreprocessing
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/ViewShortcutListView.cs
r10952 r10967 21 21 22 22 using System; 23 using HeuristicLab.Common; 23 24 using HeuristicLab.Core; 24 25 using HeuristicLab.Core.Views; … … 35 36 } 36 37 38 //Open item in new tab on double click 39 //Clone chart items 37 40 protected override void itemsListView_DoubleClick(object sender, EventArgs e) { 38 41 if (itemsListView.SelectedItems.Count == 1) { … … 41 44 42 45 if (item is IViewChartShortcut) 43 item = (IViewChartShortcut)item.Clone( );46 item = (IViewChartShortcut)item.Clone(new Cloner()); 44 47 45 48 IContentView view = MainFormManager.MainForm.ShowContent(item); -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4/Implementations/DataCompletenessChartContent.cs
r10962 r10967 24 24 : base(content, cloner) 25 25 { 26 this.dataGridLogic = content.dataGridLogic; 27 this.searchLogic = content.searchLogic; 26 28 } 27 29 -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4/Implementations/PreprocessingChartContent.cs
r10962 r10967 45 45 public PreprocessingChartContent(PreprocessingChartContent content, Cloner cloner) 46 46 : base(content, cloner) { 47 this.allInOneMode = content.allInOneMode; 48 this.chartLogic = content.chartLogic; 49 this.variableItemList = cloner.Clone<ICheckedItemList<StringValue>>(variableItemList); 47 50 } 48 51 -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4/Implementations/ScatterPlotContent.cs
r10915 r10967 39 39 public ScatterPlotContent(ScatterPlotContent content, Cloner cloner) 40 40 : base(content, cloner) { 41 41 this.SelectedXVariable = content.SelectedXVariable; 42 this.SelectedYVariable = content.SelectedYVariable; 42 43 } 43 44
Note: See TracChangeset
for help on using the changeset viewer.