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