Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/28/11 13:17:01 (13 years ago)
Author:
mkommend
Message:

#1313: Updated view names.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/CrossValidationView.cs

    r5813 r5834  
    3232
    3333namespace HeuristicLab.Algorithms.DataAnalysis.Views {
    34   [View("Cross Validation View")]
     34  [View("CrossValidation View")]
    3535  [Content(typeof(CrossValidation), true)]
    3636  public sealed partial class CrossValidationView : NamedItemView {
     
    319319      IAlgorithm algorithm = e.Data.GetData("HeuristicLab") as IAlgorithm;
    320320      if (!ReadOnly && algorithm != null &&
    321         (algorithm.ProblemType != null || Content.ProblemType.IsAssignableFrom(algorithm.Problem.GetType())) ){
     321        (algorithm.ProblemType != null || Content.ProblemType.IsAssignableFrom(algorithm.Problem.GetType()))) {
    322322        if ((e.KeyState & 32) == 32) e.Effect = DragDropEffects.Link;  // ALT key
    323323        else if ((e.KeyState & 4) == 4) e.Effect = DragDropEffects.Move;  // SHIFT key
Note: See TracChangeset for help on using the changeset viewer.