Changeset 15038
- Timestamp:
- 06/20/17 09:33:19 (7 years ago)
- Location:
- stable
- Files:
-
- 5 edited
- 6 copied
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 14995,15003
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Core.Views/3.3/HeuristicLab.Core.Views-3.3.csproj
r13647 r15038 122 122 </ItemGroup> 123 123 <ItemGroup> 124 <None Include="app.config" /> 124 125 <None Include="Plugin.cs.frame" /> 125 126 <Compile Include="BreadcrumbViewHost.cs"> … … 172 173 </Compile> 173 174 <Compile Include="Plugin.cs" /> 175 <Compile Include="Properties\Settings.Designer.cs"> 176 <AutoGen>True</AutoGen> 177 <DesignTimeSharedInput>True</DesignTimeSharedInput> 178 <DependentUpon>Settings.settings</DependentUpon> 179 </Compile> 174 180 <Compile Include="VariableValueView.cs"> 175 181 <SubType>UserControl</SubType> … … 329 335 <DependentUpon>VariableView.cs</DependentUpon> 330 336 </Compile> 337 <None Include="Properties\Settings.settings"> 338 <Generator>PublicSettingsSingleFileGenerator</Generator> 339 <LastGenOutput>Settings.Designer.cs</LastGenOutput> 340 </None> 331 341 </ItemGroup> 332 342 <ItemGroup> -
stable/HeuristicLab.Core.Views/3.3/ItemView.cs
r14186 r15038 29 29 /// </summary> 30 30 public partial class ItemView : AsynchronousContentView { 31 public const int MaximumNestingLevel = 35;32 33 31 public new IItem Content { 34 32 get { return (IItem)base.Content; } … … 46 44 base.OnInitialized(e); 47 45 48 if (CountParentControls() > MaximumNestingLevel) {46 if (CountParentControls() > Properties.Settings.Default.MaximumNestedControls) { 49 47 //capture content, needed because it is set at a later time 50 48 NestingLevelErrorControl errorControl = new NestingLevelErrorControl(() => Content, this.GetType()); -
stable/HeuristicLab.Core.Views/3.3/Properties/Settings.Designer.cs
r14995 r15038 1 //------------------------------------------------------------------------------1 //------------------------------------------------------------------------------ 2 2 // <auto-generated> 3 3 // This code was generated by a tool. … … 13 13 14 14 [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "1 5.1.0.0")]16 internalsealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {15 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "14.0.0.0")] 16 public sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 17 18 18 private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); -
stable/HeuristicLab.Optimizer
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Optimizer merged: 15003
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Optimizer/3.3/HeuristicLab.Optimizer-3.3.csproj
r14211 r15038 153 153 <EmbeddedResource Include="Documents\SGP_Robocode.hl" /> 154 154 <None Include="Plugin.cs.frame" /> 155 <Compile Include="ChangeNestingLevelDialog.cs"> 156 <SubType>Form</SubType> 157 </Compile> 158 <Compile Include="ChangeNestingLevelDialog.Designer.cs"> 159 <DependentUpon>ChangeNestingLevelDialog.cs</DependentUpon> 160 </Compile> 161 <Compile Include="MenuItems\ChangeNestingLevelMenuItem.cs" /> 155 162 <Compile Include="OptimizerSingleDocumentMainForm.cs"> 156 163 <SubType>Form</SubType>
Note: See TracChangeset
for help on using the changeset viewer.