Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PropertyClasses/HeightStructuresInputContextProperties.cs =================================================================== diff -u -r5d503cf8885ced4799e5ad44242038d99e04b162 -r3e79015849651b140c9b496e8f0f57fcdcac0d92 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PropertyClasses/HeightStructuresInputContextProperties.cs (.../HeightStructuresInputContextProperties.cs) (revision 5d503cf8885ced4799e5ad44242038d99e04b162) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PropertyClasses/HeightStructuresInputContextProperties.cs (.../HeightStructuresInputContextProperties.cs) (revision 3e79015849651b140c9b496e8f0f57fcdcac0d92) @@ -126,11 +126,11 @@ { get { - return data.WrappedData.HeightStructure; + return data.WrappedData.Structure; } set { - data.WrappedData.HeightStructure = value; + data.WrappedData.Structure = value; HeightStructuresHelper.Update(data.FailureMechanism.SectionResults, data.Calculation); data.WrappedData.NotifyObservers(); } @@ -144,10 +144,10 @@ { get { - return data.WrappedData.HeightStructure == null ? null : + return data.WrappedData.Structure == null ? null : new Point2D( - new RoundedDouble(0, data.WrappedData.HeightStructure.Location.X), - new RoundedDouble(0, data.WrappedData.HeightStructure.Location.Y)); + new RoundedDouble(0, data.WrappedData.Structure.Location.X), + new RoundedDouble(0, data.WrappedData.Structure.Location.Y)); } }