Index: DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/DamProjectCalculationSpecification.cs =================================================================== diff -u -r2513 -r3127 --- DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/DamProjectCalculationSpecification.cs (.../DamProjectCalculationSpecification.cs) (revision 2513) +++ DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/DamProjectCalculationSpecification.cs (.../DamProjectCalculationSpecification.cs) (revision 3127) @@ -43,7 +43,6 @@ private static AnalysisType selectedAnalysisType = AnalysisType.AdaptGeometry; private DamFailureMechanismeCalculationSpecification currentSpecification = null; - private StabilityKernelType selectedStabilityKernelType; private IVisibleEnabledProvider visibleEnabledProvider; public DamProjectCalculationSpecification() @@ -133,21 +132,6 @@ } } - public StabilityKernelType SelectedStabilityKernelType - { - get { return selectedStabilityKernelType; } - set - { - DataEventPublisher.BeforeChange(this, x => x.SelectedStabilityKernelType); - selectedStabilityKernelType = value; - if (currentSpecification != null) - { - currentSpecification.StabilityKernelType = selectedStabilityKernelType; - } - DataEventPublisher.AfterChange(this, x => x.SelectedStabilityKernelType); - } - } - [XmlIgnore] [Browsable(false)] public IVisibleEnabledProvider VisibleEnabledProvider Index: DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/DamEngineIo/FillDamUiFromXmlOutput.cs =================================================================== diff -u -r2913 -r3127 --- DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/DamEngineIo/FillDamUiFromXmlOutput.cs (.../FillDamUiFromXmlOutput.cs) (revision 2913) +++ DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/DamEngineIo/FillDamUiFromXmlOutput.cs (.../FillDamUiFromXmlOutput.cs) (revision 3127) @@ -20,14 +20,12 @@ // All rights reserved. using System.Collections.Generic; -using System.Linq; using Deltares.DamEngine.Io.XmlOutput; using Deltares.Geometry; using Deltares.Geotechnics.GeotechnicalGeometry; using Deltares.Geotechnics.Soils; using Deltares.Geotechnics.SurfaceLines; using Deltares.Standard.EventPublisher; -using Deltares.Standard.Extensions; using SurfaceLine = Deltares.DamEngine.Io.XmlOutput.SurfaceLine; namespace Deltares.Dam.Data.DamEngineIo @@ -144,7 +142,6 @@ var desResult = new CsvExportData(designResult.LocationName, designResult.ScenarioName) { DamFailureMechanismeCalculation = damProjectData.DamProjectCalculationSpecification.CurrentSpecification, // vanuit invoer - SelectedStabilityKernelType = damProjectData.DamProjectCalculationSpecification.SelectedStabilityKernelType, AnalysisType = DamProjectCalculationSpecification.SelectedAnalysisType, //is vanuit invoer DikeName = damProjectData.WaterBoard.Dikes[0].Name, // is de enige voor nu CalculationResult = ConversionHelper.ConvertToCalculationResult(designResult.CalculationResult), Index: DamClients/DamUI/trunk/src/Dam/Forms/StabilityKernelTypeSpecificationsControl.cs =================================================================== diff -u -r2398 -r3127 --- DamClients/DamUI/trunk/src/Dam/Forms/StabilityKernelTypeSpecificationsControl.cs (.../StabilityKernelTypeSpecificationsControl.cs) (revision 2398) +++ DamClients/DamUI/trunk/src/Dam/Forms/StabilityKernelTypeSpecificationsControl.cs (.../StabilityKernelTypeSpecificationsControl.cs) (revision 3127) @@ -34,8 +34,6 @@ public StabilityKernelTypeSpecificationsControl() { InitializeComponent(); - BindSupport.BindTextAndValue(this, StabilityKernelLabel, - StabilityKernelTypeComboBox, p => p.SelectedStabilityKernelType); FormsSupport.RepairRightAnchoredControls(this); }