Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Forms/Views/MacroStabilityInwardsCalculationRow.cs =================================================================== diff -u -r801944e042197afab2cf3bb57359970479e286b3 -r78382ec129ddc7537096860680cef36f3796700d --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Forms/Views/MacroStabilityInwardsCalculationRow.cs (.../MacroStabilityInwardsCalculationRow.cs) (revision 801944e042197afab2cf3bb57359970479e286b3) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Forms/Views/MacroStabilityInwardsCalculationRow.cs (.../MacroStabilityInwardsCalculationRow.cs) (revision 78382ec129ddc7537096860680cef36f3796700d) @@ -86,15 +86,15 @@ /// /// Gets or sets the stochastic soil model of the . /// - public DataGridViewComboBoxItemWrapper StochasticSoilModel + public DataGridViewComboBoxItemWrapper StochasticSoilModel { get { - return new DataGridViewComboBoxItemWrapper(MacroStabilityInwardsCalculation.InputParameters.StochasticSoilModel); + return new DataGridViewComboBoxItemWrapper(MacroStabilityInwardsCalculation.InputParameters.StochasticSoilModel); } set { - StochasticSoilModel valueToSet = value?.WrappedObject; + MacroStabilityInwardsStochasticSoilModel valueToSet = value?.WrappedObject; if (!ReferenceEquals(MacroStabilityInwardsCalculation.InputParameters.StochasticSoilModel, valueToSet)) { PropertyChangeHelper.ChangePropertyAndNotify(() => MacroStabilityInwardsCalculation.InputParameters.StochasticSoilModel = valueToSet, propertyChangeHandler); @@ -105,15 +105,15 @@ /// /// Gets or sets the stochastic soil profile of the . /// - public DataGridViewComboBoxItemWrapper StochasticSoilProfile + public DataGridViewComboBoxItemWrapper StochasticSoilProfile { get { - return new DataGridViewComboBoxItemWrapper(MacroStabilityInwardsCalculation.InputParameters.StochasticSoilProfile); + return new DataGridViewComboBoxItemWrapper(MacroStabilityInwardsCalculation.InputParameters.StochasticSoilProfile); } set { - StochasticSoilProfile valueToSet = value?.WrappedObject; + MacroStabilityInwardsStochasticSoilProfile valueToSet = value?.WrappedObject; if (!ReferenceEquals(MacroStabilityInwardsCalculation.InputParameters.StochasticSoilProfile, valueToSet)) { PropertyChangeHelper.ChangePropertyAndNotify(() => MacroStabilityInwardsCalculation.InputParameters.StochasticSoilProfile = valueToSet, propertyChangeHandler);