Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/12/14 15:53:38 (11 years ago)
Author:
tsteinre
Message:
  • removed index workaround in PreprocessingData Undo-Feature event handling.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingData.cs

    r10580 r10581  
    278278
    279279    public void BeginTransaction() {
    280       SaveSnapshot(DataPreprocessingChangedEventType.Any, 0, 0); //TODO: fix event handling, so that the ints can be -1, -1
     280      SaveSnapshot(DataPreprocessingChangedEventType.Any, -1, -1);
    281281      transactionDepth++;
    282282    }
     
    287287        throw new InvalidOperationException("There is no open transaction that can be ended.");
    288288      if (transactionDepth == 0)
    289         OnChanged(DataPreprocessingChangedEventType.Any, 0, 0); //TODO: fix event handling, so that the ints can be -1, -1
     289        OnChanged(DataPreprocessingChangedEventType.Any, -1, -1);
    290290    }
    291291
Note: See TracChangeset for help on using the changeset viewer.