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.

Location:
trunk/sources/HeuristicLab.Algorithms.DataAnalysis.Views/3.4
Files:
3 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
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/SupportVectorMachineModelSupportVectorsView.cs

    r5829 r5834  
    2525
    2626namespace HeuristicLab.Algorithms.DataAnalysis.Views {
    27   [View("Support vectors view")]
     27  [View("SupportVectorMachineModel SupportVectorsView")]
    2828  [Content(typeof(SupportVectorMachineModel), false)]
    2929  public partial class SupportVectorMachineModelSupportVectorsView : AsynchronousContentView {
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/SupportVectorMachineModelView.cs

    r5809 r5834  
    2626
    2727namespace HeuristicLab.Algorithms.DataAnalysis.Views {
    28   [View("Support vector machine model view")]
     28  [View("SupportVectorMachineModel view")]
    2929  [Content(typeof(SupportVectorMachineModel), true)]
    3030  public partial class SupportVectorMachineModelView : AsynchronousContentView {
Note: See TracChangeset for help on using the changeset viewer.