Free cookie consent management tool by TermsFeed Policy Generator

Changeset 11736


Ignore:
Timestamp:
01/07/15 11:04:39 (9 years ago)
Author:
mkommend
Message:

#2158:

  • Increased max nesting level slightly (from 32 to 35, so that three levels of parameters are displayed).
  • Changed access modifiers of members in NestingLevelErrorControl.
Location:
trunk/sources/HeuristicLab.Core.Views/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3/ItemView.cs

    r11592 r11736  
    2929  /// </summary>
    3030  public partial class ItemView : AsynchronousContentView {
    31     public const int MaximumNestingLevel = 32;
     31    public const int MaximumNestingLevel = 35;
    3232
    3333    public new IItem Content {
  • trunk/sources/HeuristicLab.Core.Views/3.3/NestingLevelErrorControl.cs

    r11557 r11736  
    2727namespace HeuristicLab.Core.Views {
    2828  public partial class NestingLevelErrorControl : UserControl {
    29     public Func<IContent> Content { get; set; }
    30     public Type ViewType { get; set; }
    31 
    32     public NestingLevelErrorControl() {
    33       InitializeComponent();
    34     }
     29    private Func<IContent> Content { get; set; }
     30    private Type ViewType { get; set; }
    3531
    3632    public NestingLevelErrorControl(Func<IContent> content, Type viewType)
    37       : this() {
     33      : base() {
     34      InitializeComponent();
    3835      Content = content;
    3936      ViewType = viewType;
Note: See TracChangeset for help on using the changeset viewer.