Changeset 9614 for branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/Command/ChangeValuesToNullCommand.cs
- Timestamp:
- 06/12/13 13:32:34 (11 years ago)
- Location:
- branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data
- Property svn:ignore
-
old new 1 1 bin 2 2 obj 3 *.user
-
- Property svn:ignore
-
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/Command/ChangeValuesToNullCommand.cs
r7267 r9614 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Drawing; 24 25 using System.Linq; 25 using System.Text;26 using System.Drawing;27 using System.Xml;28 26 using System.Windows.Forms; 29 27 using HeuristicLab.DataImporter.Data.CommandBase; … … 40 38 private IEnumerable<SortOrder> oldSortOrder; 41 39 42 private ChangeValuesToNullCommand() 43 : base(null, string.Empty) { 44 } 40 [StorableConstructor] 41 protected ChangeValuesToNullCommand(bool deserializing) : base(deserializing) { } 45 42 46 43 public ChangeValuesToNullCommand(DataSet dataSet, string columnGroupName, IEnumerable<Point> cellIndexes)
Note: See TracChangeset
for help on using the changeset viewer.