Index: Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/StructuresInputBaseProperties.cs =================================================================== diff -u -rf288f9ccb9ac465f017170a59279909d8431fdc7 -r9ec7530d68e3e12f58d5d9498be3e4879a0cbc15 --- Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/StructuresInputBaseProperties.cs (.../StructuresInputBaseProperties.cs) (revision f288f9ccb9ac465f017170a59279909d8431fdc7) +++ Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/StructuresInputBaseProperties.cs (.../StructuresInputBaseProperties.cs) (revision 9ec7530d68e3e12f58d5d9498be3e4879a0cbc15) @@ -232,7 +232,7 @@ } try { - setValueAction(structureInput, (RoundedDouble) double.Parse(value)); + setValueAction(structureInput, (RoundedDouble) ProbabilityFormattingHelper.Parse(value)); } catch (OverflowException) { @@ -388,8 +388,9 @@ { get { - return data.WrappedData.Structure == null ? null : - new Point2D( + return data.WrappedData.Structure == null + ? null + : new Point2D( new RoundedDouble(0, data.WrappedData.Structure.Location.X), new RoundedDouble(0, data.WrappedData.Structure.Location.Y)); } @@ -548,9 +549,7 @@ { get { - return data.WrappedData.ForeshoreProfile == null ? - new UseBreakWaterProperties() : - new UseBreakWaterProperties(data.WrappedData, PropertyChangeHandler); + return data.WrappedData.ForeshoreProfile == null ? new UseBreakWaterProperties() : new UseBreakWaterProperties(data.WrappedData, PropertyChangeHandler); } }