Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/14/14 10:28:20 (10 years ago)
Author:
pfleck
Message:

#2208 merged trunk and updated version info

Location:
branches/HeuristicLab.Problems.Orienteering
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.Orienteering

  • branches/HeuristicLab.Problems.Orienteering/HeuristicLab.DataPreprocessing.Views/3.4/ComparisonFilterView.cs

    r10998 r11185  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    158158    private IStringConvertibleValue CreateStringConvertibleValue(int columnIndex) {
    159159      IStringConvertibleValue value;
    160       if (Content.ConstrainedValue.IsType<double>(columnIndex)) {
     160      if (Content.ConstrainedValue.VariableHasType<double>(columnIndex)) {
    161161        value = new DoubleValue();
    162       } else if (Content.ConstrainedValue.IsType<String>(columnIndex)) {
     162      } else if (Content.ConstrainedValue.VariableHasType<String>(columnIndex)) {
    163163        value = new StringValue();
    164       } else if (Content.ConstrainedValue.IsType<DateTime>(columnIndex)) {
     164      } else if (Content.ConstrainedValue.VariableHasType<DateTime>(columnIndex)) {
    165165        value = new DateTimeValue();
    166166      } else {
Note: See TracChangeset for help on using the changeset viewer.